1) 청산수식 부탁드립니다.
리버스 거래이고
진입은 3번 입니다.
리버스거래(매수진입명 "a", 매도진입명 "b") 2회와 리버스 거래 2회가 끝난 후
고저점돌파시 1회 입니다.
매수진입이 먼저 발생했을 때
진입명이 "a"
SetStopLoss(2.50,PointStop);
진입명이 "b"
SetStopLoss(2.50,PointStop);
나머지 // 고저점 돌파시
SetStopLoss(2.50,PointStop);
매도진입이 먼저 발생했을 때
진입명이 "a"
SetStopLoss(2.50,PointStop);
진입명이 "b"
SetStopLoss(2.50,PointStop);
나머지 // 고저점 돌파시
SetStopLoss(2.50,PointStop);
항상 고맙습니다.
답변 1
예스스탁
예스스탁 답변
2025-03-17 14:48:49
안녕하세요
예스스탁입니다.
if MarketPosition == 1 Then
{
if IsEntryName("a") == true Then
SetStopLoss(2.50,PointStop);
Else
SetStopLoss(2.50,PointStop);
}
Else if MarketPosition == -1 then
{
if IsEntryName("b") == true Then
SetStopLoss(2.50,PointStop);
Else
SetStopLoss(2.50,PointStop);
}
Else
SetStopLoss(0);
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
> 1) 청산수식 부탁드립니다.
리버스 거래이고
진입은 3번 입니다.
리버스거래(매수진입명 "a", 매도진입명 "b") 2회와 리버스 거래 2회가 끝난 후
고저점돌파시 1회 입니다.
매수진입이 먼저 발생했을 때
진입명이 "a"
SetStopLoss(2.50,PointStop);
진입명이 "b"
SetStopLoss(2.50,PointStop);
나머지 // 고저점 돌파시
SetStopLoss(2.50,PointStop);
매도진입이 먼저 발생했을 때
진입명이 "a"
SetStopLoss(2.50,PointStop);
진입명이 "b"
SetStopLoss(2.50,PointStop);
나머지 // 고저점 돌파시
SetStopLoss(2.50,PointStop);
항상 고맙습니다.