함수설명

진입가 피라미딩 중이면 첫번째 진입의 진입가

작성방법

EntryPrice(진입위치)

매개변수 설명

활용예시

//매수 후
//진입 당일은 5% 손실시 
//다음 날부터 10% 손실시 청산
if MarketPosition == 1 Then
{
		if sDate == EntryDate(0) Then
				ExitLong("bx1",AtStop, EntryPrice*0.95);
		if sDate > EntryDate(0) Then
				ExitLong("bx2",AtStop, EntryPrice*0.90);
}

<aside> 💡 뒤로가기는 좌측상단의 목차 버튼을 눌러주세요.

</aside>