1] 기본적 분석과 기술적 분석구분 기본적 분석 기술적 분석목표좋은 종목 선정매매시점 포착분석대상내재가치가격활용수단재무제표차트정보현재정보(공개정보)과거정보특징시장변화 원인파악시장변화 방향파악내재가치(본질가치): 그 기업이 앞으로 벌어들일 현금흐름을 근거로 계산한 "진짜 가치". 시장가격(주가)과 다를 수 있고, 그 차이를 노리는 게 기본적 분석이다.기본적 분석 방법Bottom-Up(상향식): 기업분석 → 산업 → 경제분석. 개별 종목에서 출발해 위로 올라감Top-Down(하향식): 경제분석 → 산업분석 → 기업분석. 큰 그림부터 좁혀 내려옴기술적 분석: 수요/공급의 변화예측 → 추세분석, 패턴분석, 지표분석, 시장구조이론2] 경제현상과 주가통화량과 주가 — 화폐공급 증가가 이자율에 미치는 3단계 효과유동..
전체 글
건국대학교 컴퓨터공학부 학생으로, iOS/인프라에 관심이 있습니다.1] 경기변동(경기순환)의 개념경기: 한 경제의 총체적인 활동수준경기변동: 거시경제지표들의 종합적인 움직임2] 경제통계시계열변동요소: 추세변동 / 순환변동 / 계절변동 / 불규칙변동3] 경기순환과정순환과정: 순환주기, 순환진폭국면4국면: 호황, 회복, 후퇴, 불황이분법: 수축 국면, 확장 국면4] 국민소득계정, 국내총생산국민소득계정(NIPA): 한국은행이 분기별/연도별로 추계, 명목가격 및 불변가격 기준으로 나눠 작성GDP = 민간소비(C) + 투자(I) + 정부지출(G) + 순수출(NX = X − M)5] 산업활동 관련 경제지표대부분 통계청이 추계산업생산, 생산자재고, 제조업 평균가동률 등국민계정의 보조지표로 활용6] 물가지수소비자물가지수(CPI)경기변동에 크게 민감하지 않음구매력의 변동을 측정하는 지..
1] Examples of IPC SystemsShared Memory: POSIX Shared MemoryMessage Passing: PipesOne of the earliest IPC mechanisms on UNIX systems 2] POSIX shared memoryis organized using memory-mapped fileswhich associate the region of shared memory with a fileFirst, create a shared-memory objectshm_open(name, O_CREAT | O_RDWR, 0666);Configure the size of the object in bytesftruncate(fd, 4096); → how many by..
1] Interprocess Communication Processes executing concurrently may be either independent processes or cooperating processesA process is independentif it doesn’t share data with any other processesA process is cooperatingif it can affect or be affected by the other processesClearly, any processes that shared data with other process is a cooperating process2] IPC: Inter-Process Communication Coope..
1] Operations on Processes In Unix-like O/S,,A new process is created by fork() system callThe child process consist of a copy of the address space of the parent processBoth processes continue execution at the instruction after the fork() system callparent’ pid = child process idchild’ pid = 0 (if fork call success)With one differencethe return code for the fork() is zero for the child process, ..
1] Process ConceptText sectionexecutable codeData sectionglobal varialesHeap sectionmemory that is dynamically allocated during program run timeStack sectiontemporary data storage when invoking functionssuch as function parameters, return addresses, and local variablesprocess = execution program 2] Process Life CycleNewRunningInstructions are being executedready → (dispatch) → runningWaitingthe..
회사에서 MDB 그 중에서 Altibase를 쓰는데 간단하게만 내용정리를 한다. 결국 메모리 DB는 코드 경로의 차이 때문에 빠른 것.원본이 메모리에 있으니 디스크 DB를 조회하는 여러 경로가 생략됨.다만, 로그 / 체크포인트는 디스크에 저장함 Altibase의 인덱스로 B-tree를 사용한다.PK대신 Index로 조회한다.아마 여러 조건 속에서도 Unique를 가려내기 위함이 아닐까 싶다. 통신 채널로 TCP를 사용한다. Procedure를 통해 로직을 실행한다.애플리케이션이 로직을 저장하는 것이 아닌, 로직을 DB 안에 미리 저장함으로써 분리한다.
템플릿C++ 템플릿은 generic 프로그래밍 수단이다. ACE에서도 이 기능을 상당히 많이 적용하였다.클래스 또는 함수를 일반적(generic)으로 정의하며, 컴파일 시점에서 주어진 데이터 타입으로 지정된 템플릿을 적용할 수 있도록 한다.template class max_tracker {public: void track_this (const T val);private: T max_val_;};template void max_tracker::track_this (const T val) // ← max_tracker 뒤에 필요{ if (val > this->max_val_) this->max_val_ = val; return;}클래스 밖에서 템플릿 멤버 함수를 정의..
