커뮤니티

키움수식 변환_sto매수/ 웨이브트렌드매수

프로필 이미지
조민철
2026-07-30 00:00:34
20
글번호 233027
답변완료

아래 키움지표식을 시스템식으로 변환해주시기 바랍니다


1.<웨이브트렌드3선 매수 신호 화살표>


ap = (HIGH+LOW+CLOSE)/3;

esa = eavg(ap, 10);

esa1 = eavg(ap, 15);

esa2 = eavg(ap, 33);

d = eavg(abs(ap - esa), 10);

d1 = eavg(abs(ap - esa1), 15);

d2 = eavg(abs(ap - esa2), 33);

ci = (ap - esa) / (0.015 * d);

ci1 = (ap - esa1) / (0.015 * d1);

ci2 = (ap - esa2) / (0.015 * d2);

wt1 = eavg(ci,21);

wt3 = eavg(ci1,33);

wt5 = eavg(ci2,52);


WT1(1)<20 AND WT3(1)<20 AND WT5(1)<20 AND CROSSUP(WT1,20)

++++++++++++++++++++++++++++++++++++++++++++++++++++

2.<스토3선 매수 신호 화살표>


A=Sum(C-lowest(L,9),9)/Sum((highest(H,9)-lowest(L,9)),9)*100;

A1=Sum(C-lowest(L,17),9)/Sum((highest(H,17)-lowest(L,17)),9)*100;

A2=Sum(C-lowest(L,26),9)/Sum((highest(H,26)-lowest(L,26)),9)*100;


A(1)<20 AND A1(1)<20 AND A2(1)<20 AND CROSSUP(A,20)


+++++++++++++++++++++++++++++++++++++++++++++++++++++


감사합니다

시스템
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2026-07-30 15:57:54

안녕하세요 예스스탁입니다. var : ap(0),esa(0),esa1(0),esa2(0),d(0),d1(0),d2(0),ci(0),ci1(0),ci2(0),wt1(0),wt3(0),wt5(0); ap = (HIGH+LOW+CLOSE)/3; esa = ema(ap, 10); esa1 = ema(ap, 15); esa2 = ema(ap, 33); d = ema(abs(ap - esa), 10); d1 = ema(abs(ap - esa1), 15); d2 = ema(abs(ap - esa2), 33); ci = (ap - esa) / (0.015 * d); ci1 = (ap - esa1) / (0.015 * d1); ci2 = (ap - esa2) / (0.015 * d2); wt1 = ema(ci,21); wt3 = ema(ci1,33); wt5 = ema(ci2,52); if WT1[1]<20 AND WT3[1]<20 AND WT5[1]<20 AND CROSSUP(WT1,20)Then Buy(); 2 var : A(0),A1(0),A2(0); A=accumn(C-lowest(L,9),9)/accumn((highest(H,9)-lowest(L,9)),9)*100; A1=accumn(C-lowest(L,17),9)/accumn((highest(H,17)-lowest(L,17)),9)*100; A2=accumn(C-lowest(L,26),9)/accumn((highest(H,26)-lowest(L,26)),9)*100; if A[1]<20 AND A1[1]<20 AND A2[1]<20 AND CROSSUP(A,20) Then Buy(); 즐거운 하루되세요