답변완료
신호수식을 종목검색으로문의드립니다
1번A=Highest(V, 20);B=Valuewhen(1, V>A(1),(o+C+L+H+C)/5);A1=Highest(V,60);B1=Valuewhen(1, V>A1(1),(o+C+L+H+C)/5);b>b1 && b(1)<=b1(1)2번M5=ma(C ,5);M10=ma(C,10);M20=ma(C ,20);M60=ma(C, 60);배열a=M5>M10 && M10>M20 && M20>M60;배열b=M10>M20 && M20>M60;조건 =sum(배열A(5),10) == 10 &&sum(배열B, 15) == 15 &&CrossUp(M5 , M10);cnt=CountSince(배열A && !배열A(1), 조건);cnt==1 && cnt(1)==0
2026-01-20
154
글번호 229914
종목검색
답변완료
종목검색문의드립니다
1번AA=Crossup(CCI(Period*5),Level);CC=CountSince(crossdown(CCI(Period*5), Level), CCI(Period*5)<Level);AA && CC>spanperiod 48level -100span 202번AA=crossup(C, eavg(C, 5));BB=crossup(C, eavg(C, 20));CC=(97<=disparity(5)) and (disparity(5)<=103);DD=(97<=disparity(20)) and (disparity(20)<=103);EE=(97<=disparity(60)) and (disparity(60)<=103);FF=(C>(highest(high(25),9)+lowest(low(25),9)+highest(high(25),26)+lowest(low(25),26))/4 ) and (C>(highest(high(25),52)+lowest(low(25),52))/2);VV=V>highest(V(1), period);(AA or BB) and CC and DD and EE and FF and VVperiod 20
답변완료
부탁드립니다
INPUT : 기간(20),기간1 (60),N(10) ;VAR : A(0) ,A1 (0),B1(0),i(Nan),B(Nan),T(0);A=Highest (V,기간); IF V>A[1] TheN B=(O+C+L+H+C)/5; A1=Highest(V,기간1); IF V>A1[1] TheN B1= (O+C+L+H+C)/5;if B != B[1] Then{ if B > B[1] Then T = 1; if B < B[1] Then { T = 1; i = Index; if B <= B[1]*0.90 Then { T = 2; i = Index; } }}if T == 2 and index >= i+N Then //N봉 이전에 하락발생이면 index >= i+N입니다. Find(1);하락이후 첫돌파만 검색되고 첫돌파가 발생해던 종목은 검색이 안되게 부탁 드립니다
2026-01-20
105
글번호 229912
종목검색