매수진입인 경우.
Definitions & Relations.
PriceDiff ProfitMaxHold
- PriceDiff ProfitMaxHold = Price Item - Price Entry(Buy)
Price ProfitMaxHold
- 아이템 가격이 진입가격 이상인 경우 정의.
- Price ProfitMaxHold = Price Entry(Buy). + PriceDiff ProfitMaxHold
Price Exit
- 청산 기준 가격. 아이템 가격이 Price Exit 이하인 경우 청산 주문 시행.
- Price Exit = Price ProfitMaxHold – PriceDiff_Exit.
PriceDiff_Exit
아이템가격이 Price ProfitMaxHold 이하 어느정도일 때 청산주문 시행할지 기준범위. 매매대상 종목의 가격변화 특성 고려하여 설정되어야 함.
매도진입인 경우.
Definitions & Relations.
PriceDiff ProfitMaxHold
- PriceDiff ProfitMaxHold = Price Entry(Sell) - Price Item.
Price ProfitMaxHold
- 아이템 가격이 진입가격 이하인 경우 정의.
- Price ProfitMaxHold = Price Entry(Sell) - PriceDiff ProfitMaxHold.
Price Exit
- 청산 기준 가격. 아이템 가격이 Price Exit 이상인 경우 청산 주문 시행.
- Price Exit = Price ProfitMaxHold + PriceDiff_Exit.
PriceDiff_Exit
아이템 가격이 Price ProfitMaxHold 이상 어느정도에서 청산주문 시행할지 기준범위. 매매대상 종목의 가격변화 특성 고려하여 설정되어야 함.
수도코드.
코드요점
:
매번의 가격변동시점마다 최종
Price Exit
값 갱신해야하며
,
이를 위하여 아래와 같은 과정 거친다
.
매수진입인 경우,
PriceDiff Profit = Price Item – Price Entry(Buy);
If (PriceDiff Profit > 0 ) {
If (PriceDiff Profit > PriceDiff ProfitMaxHold) { //
이전 값보다 더 크다면.
PriceDiff ProfitMaxHold = PriceDiff Profit; //
신규 고가로 갱신.
Price ProfitMaxHold = PriceDiff ProfitMaxHold + Price Entry(Buy); //
신규고가 갱신.
Price Exit = Price ProfitMaxHold – PriceDiff Exit; // PriceDiff Exit 만큼 더 낮은 가격으로 설정.
}
}
매도진입인 경우,
PriceDiff Profit = Price Entry(Sell) - Price Item;
If (PriceDiff Profit > 0 ) {
If (PriceDiff Profit > PriceDiff ProfitMaxHold) { //
이전 값보다 더 크다면.
PriceDiff ProfitMaxHold = PriceDiff Profit; //
신규 고가로 갱신.
Price ProfitMaxHold = Price Entry(Buy) - PriceDiff ProfitMaxHold; //
신규저가격 갱신.
Price Exit = Price ProfitMaxHold + PriceDiff Exit; // PriceDiff Exit만큼 더 높은가격으로 갱신.
}
}
///1314.
'트레이딩' 카테고리의 다른 글
시스템매매 수익 곡선 타입. 초보 부터 신의 경지까지. (0) | 2017.08.06 |
---|---|
CySignal. Trading Simulator 주요 품질요소 체결처리부. (0) | 2017.07.21 |
동부증권 해외선물 API. Visual C++ 코딩 첫 지점. (0) | 2016.12.26 |
웹사이트: TradingView. FX 마진, 해외선물등 실시간 시세 웹에서 바로보기.비트코인 포함 모든 글로벌 금융상품 (0) | 2016.11.27 |
동부증권 API. 사용신청, 예제소스코드 다운로드. (0) | 2016.11.17 |
댓글