커뮤니티
해석 Length(1), Consec(3)
2020-01-19 18:59:52
160
글번호 131353
해석 부탁합니다
input : Length(1), Consec(3);
if CountIf(Close > Highest(High, Length)[1], Consec) == Consec Then
Buy ();
if CountIf(Close < Lowest(Low, Length)[1], Consec) == Consec Then
sell ();
답변 1
예스스탁 예스스탁 답변
2019-08-22 16:42:25
안녕하세요
예스스탁입니다.
input : Length(1), Consec(3);
#종가가 Consec(3)봉 연속, 전봉기준 Length(1)기간 최고값을 갱신
if CountIf(Close > Highest(High, Length)[1], Consec) == Consec Then
Buy ();
#종가가 Consec(3)봉 연속, 전봉기준 Length(1)기간 최저값을 갱신
if CountIf(Close < Lowest(Low, Length)[1], Consec) == Consec Then
sell ();
즐거운 하루되세요
> 좌오비우오비 님이 쓴 글입니다.
> 제목 : 문의
> 해석 부탁합니다
input : Length(1), Consec(3);
if CountIf(Close > Highest(High, Length)[1], Consec) == Consec Then
Buy ();
if CountIf(Close < Lowest(Low, Length)[1], Consec) == Consec Then
sell ();