Even the small things are precious

Remembering the precious moments of each day...

My precious treasure that collects the wisdom of life.

주식/노바지검색식

키움 영웅문 쌍바닥 검색 수식

노바지 둥둥이 2023. 2. 24. 11:33

 

S=sum(1);
M5=ma(C,기간1,지수);
상전5=M5>M5(1) && M5(1)<M5(2);
M2=ma(C,기간2);
DC=Valuewhen(1,Crossdown(M5,M2),S);
상1=Valuewhen(1,상전5,S);
상2=Valuewhen(2,상전5,S);
상3=Valuewhen(3,상전5,S);
GC=Valuewhen(1,CrossUp(M5,M2),S);
조건W=상3<DC && DC<상2 && 상2<상1 && 상1<GC;
조건W && !조건W(1)
지표 변수



시간 1 = 5

시간 2 = 25

input : P(5),Left(3),right(3);
var : mav(0),H1(0),H2(0),L1(0),L2(0);

mav = ma(C,P);

if SwingHigh(1,mav,Left,Right,Left+Right+1) != -1 Then{
      H1 = mav[right];
      H2 = H1[1];
      if H1 < H2 and H2 > 0 Then
            sell();
}

if SwingLow(1,mav,Left,Right,Left+Right+1) != -1 Then{
      L1 = mav[right];
      L2 = L1[1];
      if L1 > L2 and L2 > 0 Then
            Buy();
}