예스스탁
예스스탁 답변
2025-03-31 14:48:27
안녕하세요
예스스탁입니다.
If EntriesToday(Date) < 1 and sTime >= ET and sTime < 152500 Then {
Buy("매수", AtStop, Var1,4);
Sell("매도", AtStop, Var2,4);
}
If MarketPosition == 1 Then
{
ExitLong("매수청산", AtStop, Var3);
if CurrentContracts == MaxContracts Then
{
ExitLong("bp",AtLimit,EntryPrice+(40/MaxContracts) ,"",2,1);
ExitLong("bl",AtStop,EntryPrice-(40/MaxContracts),"",2,1);
}
}
if MarketPosition == -1 Then
{
ExitShort("매도청산", AtStop, Var4);
if CurrentContracts == MaxContracts Then
{
ExitShort("Sp",AtLimit,EntryPrice-(40/MaxContracts) ,"",2,1);
ExitShort("Sl",AtStop,EntryPrice+(40/MaxContracts),"",2,1);
}
}
#시간
SetStopEndofday(152500);
즐거운 하루되세요
> 다이버 님이 쓴 글입니다.
> 제목 : 다음 내용의 산식 부탁드립니다
> 현재 진입/청산식이 다음과 같이 되어 있는데요,
If EntriesToday(Date) < 1 and sTime >= ET and sTime < 152500 Then {
Buy("매수", AtStop, Var1);
Sell("매도", AtStop, Var2);
}
If MarketPosition <> 0 Then {
ExitLong("매수청산", AtStop, Var3);
ExitShort("매도청산", AtStop, Var4);
}
#시간
SetStopEndofday(152500);
다음과 같이 변경 수식 부탁드립니다.
1) 위의 진입조건에서 4계약을 진입
2) 청산조건은 위의 청산조건에 추가로,
40포인트 수익 발생시 (계약당 10포인트 * 4계약 = 40포인트)
2계약은 즉시 익절 청산하고, 나머지 2계약은 15시25분에 청산
40포인트 손실 발생시 (계약당 -10포인트 * 4계약 = -40포인트)
2계약은 즉시 손절 청산하고, 나머지 2계약은 15시25분에 청산
감사합니다.