함수설명
평단가
작성방법
AvgEntryPrice
C
복사
활용예시
//매수진입 후 평단가기준 20틱 수익이면 즉시 청산
if MarketPosition == 1 Then
ExitLong("bx",AtLimit,AvgEntryPrice+PriceScale*20);
//매도진입 후 평단가 기준 20틱 수익이면 즉시 청산
if MarketPosition == -1 Then
ExitShort("sx",AtLimit,AvgEntryPrice-PriceScale*20);
C
복사
뒤로가기는 좌측상단의 목차 버튼을 눌러주세요.