커뮤니티
감사합니다.
2014-05-26 09:52:44
143
글번호 75342
감사합니다.
아래의 수식이 오류가 나는 사유는 무엇인가요?
Var4=c;
if marketposition=1 and daylow>=var3 and stime>=093000
then exit("bx72",AtStop,daylow-0.2);
감사합니다.
답변 1
예스스탁 예스스탁 답변
2014-05-26 16:59:53
안녕하세요
예스스탁입니다.
Var4=c;
if marketposition==1 and daylow>=var3 and stime>=093000
then exitlong("bx72",AtStop,daylow-0.2);
같다라는 표현은 == 입니다.
if marketposition=1 -->(X)
if marketposition==1 -->(0)
매수포지션을 청산하는 함수는 exitlong입니다.
즐거운 하루되세요
> huhboo99 님이 쓴 글입니다.
> 제목 : 감사합니다.
> 감사합니다.
아래의 수식이 오류가 나는 사유는 무엇인가요?
Var4=c;
if marketposition=1 and daylow>=var3 and stime>=093000
then exit("bx72",AtStop,daylow-0.2);
감사합니다.