커뮤니티

문의

프로필 이미지
ciao
2012-10-29 20:39:45
340
글번호 56055
답변완료
아래식의 변환 부탁드리겠습니다 Input : IBV(7); Vars : IndConv(0); IndConv = (((Close of Data2) / (Close[1] of Data2) - 1) * 1000) + 6; If IndConv >= IBV then Buy this bar on close ; If IndConv <= neg(IBV) then Sell this bar on close ;
시스템
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2012-10-29 22:42:17

안녕하세요 예스스탁입니다. Input : IBV(7); Vars : IndConv(0); IndConv = (((Data2(close)) / (Data2(close[1])) - 1) * 1000) + 6; If IndConv >= IBV then Buy("b",OnClose); If IndConv <= neg(IBV) then Sell("s",OnClose); 즐거운 하루되세요 > ciao 님이 쓴 글입니다. > 제목 : 문의 > 아래식의 변환 부탁드리겠습니다 Input : IBV(7); Vars : IndConv(0); IndConv = (((Close of Data2) / (Close[1] of Data2) - 1) * 1000) + 6; If IndConv >= IBV then Buy this bar on close ; If IndConv <= neg(IBV) then Sell this bar on close ;