Inputs: ATRlen(10), Factor(3), MALong(60);
Var: ATRVal(0), Upper(0), Lower(0), Trend(0), LongMA(0);
ATRVal = ATR(ATRlen);
Upper = (H+L)/2 + Factor*ATRVal;
Lower = (H+L)/2 - Factor*ATRVal;
If C > Lower then Trend = 1;
If C < Upper then Trend = 0;
LongMA = MA(C, MALong);
If C > LongMA And Trend = 1 then
Find(1);
마지막 줄 오류 수정,보완 부탁드립니다.
답변 1
예스스탁
예스스탁 답변
2024-12-16 17:33:13
안녕하세요
예스스탁입니다.
Inputs: ATRlen(10), Factor(3), MALong(60);
Var: ATRVal(0), Upper(0), Lower(0), Trend(0), LongMA(0);
ATRVal = ATR(ATRlen);
Upper = (H+L)/2 + Factor*ATRVal;
Lower = (H+L)/2 - Factor*ATRVal;
If C > Lower then Trend = 1;
If C < Upper then Trend = 0;
LongMA = MA(C, MALong);
If C > LongMA And Trend == 1 then
Find(1);
즐거운 하루되세요
> nicebs 님이 쓴 글입니다.
> 제목 : 문의
>
Inputs: ATRlen(10), Factor(3), MALong(60);
Var: ATRVal(0), Upper(0), Lower(0), Trend(0), LongMA(0);
ATRVal = ATR(ATRlen);
Upper = (H+L)/2 + Factor*ATRVal;
Lower = (H+L)/2 - Factor*ATRVal;
If C > Lower then Trend = 1;
If C < Upper then Trend = 0;
LongMA = MA(C, MALong);
If C > LongMA And Trend = 1 then
Find(1);
마지막 줄 오류 수정,보완 부탁드립니다.