input : price(83.50);
if MarketPosition == 0 and H < Price Then
Buy("b",AtStop,Price);
ExitLong("Bp",AtLimit,Price+PriceScale*20);
ExitLong("Bl",AtStop,Price-PriceScale*5);
위에 로직은 기준가 설정 후 매수용인데요.
매도 진입 후 손절5틱 익절20틱으로 부탁드립니다.
답변 1
예스스탁
예스스탁 답변
2021-10-28 16:18:43
안녕하세요
예스스탁입니다.
input : price(83.50);
if MarketPosition == 0 and L > Price Then
Sell("s",AtStop,Price);
ExitShort("Sp",AtLimit,Price+PriceScale*20);
ExitShort("Sl",AtStop,Price-PriceScale*5);
즐거운 하루되세요
> 선물대장 님이 쓴 글입니다.
> 제목 : 문의 드립니다.
> input : price(83.50);
if MarketPosition == 0 and H < Price Then
Buy("b",AtStop,Price);
ExitLong("Bp",AtLimit,Price+PriceScale*20);
ExitLong("Bl",AtStop,Price-PriceScale*5);
위에 로직은 기준가 설정 후 매수용인데요.
매도 진입 후 손절5틱 익절20틱으로 부탁드립니다.