커뮤니티

안녕하세요...

프로필 이미지
풍경7070
2010-12-15 16:36:14
686
글번호 34357
답변완료
추운날씨에 수고가많습니다. 가, if C > DayClose(1) and C > dayopen+0.5 And C > (dayhigh+daylow/2) Then buy(); 나, if CrossDown(c,ma(C,20)) Then ExitLong(); 다, if C < DayClose(1) and C < dayopen+0.5 And C < (dayhigh+daylow/2) Then Sell(); 라, if CrossUp(c,ma(C,20)) Then ExitShort(); 위 수식에 추가해서 가, (1분봉기준) C > 120이평선위 추가하시고, 매수신호와 청산만 (모든조건충족시) 다, " C < 120이평선아래 매도신호와 청산만 부탁드립니다.
시스템
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2010-12-16 09:38:16

안녕하세요 예스스탁입니다. #매수진입 if C > DayClose(1) and C > dayopen+0.5 And C > (dayhigh+daylow/2) and C > ma(c,120) Then buy(); #매수청산 if CrossDown(c,ma(C,20)) Then ExitLong(); #매도진입 if C < DayClose(1) and C < dayopen+0.5 And C < (dayhigh+daylow/2) and C < ma(c,120) Then Sell(); #매도청산 if CrossUp(c,ma(C,20)) Then ExitShort(); 즐거운 하루되세요 > 풍경7070 님이 쓴 글입니다. > 제목 : 안녕하세요... > 추운날씨에 수고가많습니다. 가, if C > DayClose(1) and C > dayopen+0.5 And C > (dayhigh+daylow/2) Then buy(); 나, if CrossDown(c,ma(C,20)) Then ExitLong(); 다, if C < DayClose(1) and C < dayopen+0.5 And C < (dayhigh+daylow/2) Then Sell(); 라, if CrossUp(c,ma(C,20)) Then ExitShort(); 위 수식에 추가해서 가, (1분봉기준) C > 120이평선위 추가하시고, 매수신호와 청산만 (모든조건충족시) 다, " C < 120이평선아래 매도신호와 청산만 부탁드립니다.