커뮤니티
부탁드립니다
2026-02-11 07:48:40
163
글번호 230512
wvf = ((highest(C,22)-Low)/highest(C,22))*100;
sDev = 2.0*stdev(wvf,20);
midLine = avg(wvf,20);
upperBand = midLine+sDev;
rangeHigh = (highest(wvf,50))*ph;
os = (wvf >= upperBand)or (wvf >= rangeHigh);
ap = (high+low+close)/3;
esa = eavg(ap,기간1);
d = eavg(abs(ap-esa),기간1);
ci = (ap-esa)/(0.015*d);
wt1 = eavg(ci,기간2);
wt2 = avg(wt1,4);
wt1(1)<=-53 && (os(1) or os)&& wvf(1)>wvf &&
crossup(wt1,wt2)
지표조건
기간1 10
기간2 21
ph 0.85
답변 1
예스스탁 예스스탁 답변
2026-02-11 12:43:51
안녕하세요
예스스탁입니다.
input :기간1(10),기간2(21),ph(0.85);
var : wvf(0),sdev(0),midLine(0),upperBand(0);
var : rangeHigh(0),os(False);
var : ap(0),esa(0),d(0),ci(0),wt1(0),wt2(0);
wvf = ((highest(C,22)-Low)/highest(C,22))*100;
sDev = 2.0*std(wvf,20);
midLine = ma(wvf,20);
upperBand = midLine+sDev;
rangeHigh = (highest(wvf,50))*ph;
os = (wvf >= upperBand)or (wvf >= rangeHigh);
ap = (high+low+close)/3;
esa = Ema(ap,기간1);
d = Ema(abs(ap-esa),기간1);
ci = (ap-esa)/(0.015*d);
wt1 = Ema(ci,기간2);
wt2 = avg(wt1,4);
if wt1[1]<=-53 && (os[1] or os)&& wvf[1]>wvf && crossup(wt1,wt2) Then
Find(1);
새해 복 많이 받으시고 즐거운 명절 보내시기 바랍니다.
다음글
이전글