예스스탁
예스스탁 답변
2022-10-17 14:24:52
안녕하세요
예스스탁입니다.
input : Period(125),Period_max(60),Period_min(10),lower(90),upper(140);
var : candle(0),aa(0),bb(0),cloud1(0),cloud2(0),condition(False);
CANDLE=CANDLE+1;
AA=highest(C, period)[1];
if CrossUp(C,aa) Then
BB = CANDLE;
cloud1=(
highest(high,9)+
lowest(low,9)+
highest(high,26)+
lowest(low,26)
)/4;
cloud2=(
highest(high,52)+
lowest(low,52)
)/2;
condition= crossup(C, AA) and (CANDLE-BB[1]<period_max)
and (period_min< CANDLE-BB[1])
and (lower<disparity(60) and disparity(60) <upper)
and (C > cloud1[25] and C > cloud2[25])
and (O < cloud1[25]*1.3 and O < cloud2*1.3);
if Condition == true Then
Find(1);
즐거운 하루되세요
> 매치다2 님이 쓴 글입니다.
> 제목 : 부탁드립니다
> CANDLE=sum(1);
AA=highest(C(1), period);
BB=valuewhen(1, crossup(C, AA), CANDLE);
cloud1=(
highest(high,9)+
lowest(low,9)+
highest(high,26)+
lowest(low,26)
)/4;
cloud2=(
highest(high,52)+
lowest(low,52)
)/2;
condition= crossup(C, AA) and (CANDLE-BB(1)<period_max)
and (period_min< CANDLE-BB(1))
and (lower<disparity(60) and disparity(60) <upper)
and (C > cloud1(25) and C > cloud2(25))
and (O < cloud1(25)*1.3 and O < cloud2(25)*1.3)
지표변수
period 125
period_max 60
period_min 10
lower 90
upper 140