매수 신호
M= ma(c,20,지수);
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*1.5)
or
(Crossup(C,BBandsUP(Period,D1)) && RSI(5)>70)
or
(Crossup(C,A1) && V > VV*1.5)
or
shortPeriod 10
Period 8
D1 1.8
답변 1
예스스탁
예스스탁 답변
2022-03-31 14:48:25
안녕하세요
예스스탁입니다.
input : shortPeriod(10),period(8),d1(0);
var : mm(0),a1(0),vv(0);
mm = ema(c,20);
A1 = (highest(high,shortPeriod)+lowest(low,shortPeriod))/2 ;
VV = (V[5] + V[5] + V[3] + V[2] + V[1])/5;
var1 = ma(C,period);
Var2 = BollBandUp(Period,d1);
Var3 = rsi(5);
if mm[2]<mm[1] and mm[1] <mm and
(Crossup(C,var1) && V > VV*1.5) or
(Crossup(C,Var2) && Var3>70) or
(Crossup(C,A1) && V > VV*1.5) Then
Buy();
즐거운 하루되세요
> 이름이 님이 쓴 글입니다.
> 제목 : 키움 수식입니다 시스템 트레이딩으로 변경 부탁 드립니다.
> 매수 신호
M= ma(c,20,지수);
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*1.5)
or
(Crossup(C,BBandsUP(Period,D1)) && RSI(5)>70)
or
(Crossup(C,A1) && V > VV*1.5)
or
shortPeriod 10
Period 8
D1 1.8