안녕하세요?
아래와 같은수식을 예스 검색식으로 부탁드립니다.
감사합니다..
M = ma(c,10,가중);
M(2) < M(1) < M
and
A1 = (highest(high,shortPeriod)+lowest(low,shortPeriod))/2 ;
VV = (V(5) + V(4) + V(3) + V(2) + V(1))/5;
(Crossup(C,BBandsC(Period,D1)) && V > VV*2)
or
(Crossup(C,BBandsUP(Period,D1)) && RSI(5)>70)
or
(Crossup(C,A1) && V > VV*2)
or
(crossup(c,dayopen()) && V > VV*2 && RSI(5)>70)
변수
shortperiod 5
period 20
D1 1.8
답변 1
예스스탁
예스스탁 답변
2024-12-16 17:14:06
안녕하세요
예스스탁입니다.
M(2) < M(1) < M
and
A1 = (highest(high,shortPeriod)+lowest(low,shortPeriod))/2 ;
키움식에서 위와 같이 조건먼안에 저장이 있으면 어떤 형태로 동작하는지 모르겠습니다.
조건이 만족할때 a1에 값이 저장되는 것으로 보고 작성해 드립니다.
input : shortPeriod(5),period(20),d1(1.8);
var : mm(0),A1(0),vv(0);
mm = wma(c,10);
if mm[2] < mm[1] and mm[1] < mm Then
A1 = (highest(high,shortPeriod)+lowest(low,shortPeriod))/2 ;
VV = ma(v,5)[1];
if (Crossup(C,ma(C,Period)) && V > VV*2) or
(Crossup(C,BollBandUp(Period,D1)) && RSI(5)>70) or
(Crossup(C,A1) && V > VV*2) or
(crossup(c,dayopen()) && V > VV*2 && RSI(5)>70) Then
Find(1);
즐거운 하루되세요
> 오말리 님이 쓴 글입니다.
> 제목 : 검색식 부탁드립니다.
> 안녕하세요?
아래와 같은수식을 예스 검색식으로 부탁드립니다.
감사합니다..
M = ma(c,10,가중);
M(2) < M(1) < M
and
A1 = (highest(high,shortPeriod)+lowest(low,shortPeriod))/2 ;
VV = (V(5) + V(4) + V(3) + V(2) + V(1))/5;
(Crossup(C,BBandsC(Period,D1)) && V > VV*2)
or
(Crossup(C,BBandsUP(Period,D1)) && RSI(5)>70)
or
(Crossup(C,A1) && V > VV*2)
or
(crossup(c,dayopen()) && V > VV*2 && RSI(5)>70)
변수
shortperiod 5
period 20
D1 1.8