예스스탁
예스스탁 답변
2025-01-09 15:47:26
안녕하세요
예스스탁입니다.
수식에 별도로 문제가 없습니다.
2번은 매도포지션 거래만, 3번은 매수포지션 거래만 되게 작성된 식이 맞습니다.
신호도 동일하게 나오고 있습니다.
외부변수만 동일하게 지정하시면 됩니다.
Inputs: VtyPercent(0.75),ATRperiod(5);
즐거운 하루되세요
> 푸른 님이 쓴 글입니다.
> 제목 : 문의 드립니다
>
Inputs: VtyPercent(0.75),ATRperiod(5);
If MarketPosition() <> 1 Then
Buy ("Vty_LE", AtStop, Close + (VtyPercent * ATR(ATRperiod)));
If MarketPosition() <> -1 Then
Sell ("Vty_SE)", AtStop, Close - (VtyPercent * ATR(ATRperiod)));
위 수식어는 시스템의 Volatility Percent 입니다.
아래 수식어 2개는 Volatility Percent을 Buy,Sell 신호이후 각각 청산만 되도록
수식어를 변경하였는데 신호가 반대로 나타납니다.
수정이 가능한지 문의 드립니다.
2.
Inputs: VtyPercent(0.11),ATRperiod(2);
If MarketPosition() <> 1 Then
ExitShort ("Vty_LE", AtStop, Close + (VtyPercent * ATR(ATRperiod)));
If MarketPosition() <> -1 Then
Sell ("Vty_SE)", AtStop, Close - (VtyPercent * ATR(ATRperiod)));
3.
Inputs: VtyPercent(0.11),ATRperiod(2);
If MarketPosition() <> 1 Then
Buy ("Vty_LE", AtStop, Close + (VtyPercent * ATR(ATRperiod)));
If MarketPosition() <> -1 Then
ExitLong ("Vty_SE)", AtStop, Close - (VtyPercent * ATR(ATRperiod)));
늘 감사드립니다.