답변완료
종목검색식 요청드립니다.
아래의 키움신호가 발생한 종목을 검색하는 검색식을 각각 만들고 싶습니다. 도움 부탁드리겠습니다.
1. 키움신호 (short-5, mid-26, long-52, Percent 3)
max( avg(C,short), avg(C,mid), avg(C,long)) <
min( avg(C,short), avg(C,mid), avg(C,long)) * (1+Percent/100)
and HIGHEST(H, 4, 1) < C
and O < C
and V(1)*1.5 <= V
2. 키움신호 (short-5, mid-26, long-52, Percent 3)
max( avg(C,short), avg(C,mid), avg(C,long)) <
min( avg(C,short), avg(C,mid), avg(C,long)) * (1+Percent/100) &&
HIGHEST(H, 4, 1) < C
and O < C
and ((C(1)*1.021 <= C) or (O*1.021 <= C))
and (C-O)*2 >= (H-C)
and (C-O)*0.9 >= (O-L)
and V(1)*1.5 <= V
and avg(V, 5) >= 9000
and PreDayClose() >= 950
and Crossup(C,SAR(0.02, 0.2))
2025-01-20
541
글번호 187364
종목검색
답변완료
신호수식 부탁드려요
키움신호수식
MG = eavg(C, period, 1)+((C-(eavg(C,period, 1)))/(C/(eavg(C, period, 1))*rate));
E = eavg(C, period, 1);
하향지속 = sum(MG > E, K2);
상향지속 = sum(MG < E, K2);
a1 = valuewhen(1, 상향지속(K2) ==N2 && 하향지속==K2, h);
a1(1)<a1
(지표변수)
period 10
rate 5
K2 5
N2 3
2025-01-20
556
글번호 187362
시스템
답변완료
조건검색 문의드립니다.
안녕하세요.
/*---------------------------1번조건---------------------------------------*/
input : signal(7),period(8),period1(17),short(10),long(15);
var : T(0),N(0),MM(0),hh(0),ll(0),macdv(0),macds(0),DM(0),DP(0),Sarv(0),bbup(0);
T = TRIX(Period);
N = EnvelopeUp(50,3);
macdv = macd(short,long);
macds = Ema(macdv,signal);
DP = DiPlus(14);
DM = DiMinus(14);
Sarv = Sar(0.015,0.15);
bbup = BollBandUp(Period1,2);
if CrossUp(T,0) Then
hh = C;
if CrossDown(T,0) Then
LL = C;
if HH > 0 and C > HH Then
HH = C;
if LL > 0 and C < LL Then
LL = C;
if hh > 0 and LL > 0 Then
{
MM = (HH+LL)/2;
if c>=MM and c > N[19] and c>o and
macdv >= 0 and
macdv > macds and
DP >= DM and
C >= Sarv and
CrossUp(c, bbup) Then
Find(1);
}
/*---------------------------2번조건---------------------------------------*/
input : 기간(14);
var : LL(0),LS(0),E(0),DD(0),고점(False);
LL = LRL(C,기간);
LS = LRS(C,기간);
E = EnvelopeUp(70,3);
if LL<LL[1] and LL[1]>LL[2] Then
dd = LL[1];
if C > E and LS > 0 and (CrossUp(C,DD) or CrossUp(LS,1)) Then
Find(1);
/*---------------------------3번조건---------------------------------------*/
input : 기간(20),기간1(5),기간2(60),n(1),D1(2);
var : MM(0),E(0),R(0),B(0),W(0),HH(0);
MM = Ema(C,기간1)-Ema(C,기간2);
E = EnvelopeUp(70,3);
R = RSI(14);
B = ma(ma(MM,n),기간)+D1*std(ma(MM,n),기간);
if CrossUp(MM,0) Then
{
HH = MM;
W = HH[1];
Condition1 = true;
}
if Condition1 == true and MM > HH Then
HH = MM;
if MM > W and C > E and R < 80 and CrossUp(MM,B) Then
Find(1);
/*---------------------------4번조건---------------------------------------*/
input : 기간1(5),기간2(20);
var : AA(0),BB(0),DD(0);
AA = ema(c,기간1);
BB = ema(c,기간2);
if BB<BB[1] and BB[1]>BB[2] Then
DD = BB[1];
if DD > 0 and CrossUp(AA,DD) Then
Find(1);
현재는 위 네개를 따로 쓰고있는데 한번에 하고싶어요.
위조건을 모두 만족하는 종목을 찾고싶습니다.
1 and 2 and 3 and 4
2025-01-19
348
글번호 187359
종목검색