예스스탁
예스스탁 답변
2020-02-26 15:13:58
안녕하세요
예스스탁입니다.
input : n1(10),n2(21),obLevel1(60),obLevel2(53),osLevel1(-60),osLevel2(-53);
var : ap(0),esa(0),d(0),ci(0),tci(0),wt1(0),wt2(0);
ap = (H+L+C)/3;
esa = ema(ap, n1);
d = ema(abs(ap - esa), n1);
ci = (ap - esa) / (0.015 * d);
tci = ema(ci, n2);
wt1 = tci;
wt2 = ma(wt1,4);
PlotBaseLine1(0,"0",gray);
PlotBaseLine2(obLevel1,"obLevel1",red);
PlotBaseLine3(osLevel1,"osLevel1",green);
PlotBaseLine4(obLevel2,"obLevel2",red);
PlotBaseLine5(osLevel2,"osLevel2",green);
plot1(wt1,"wt1",green);
plot2(wt2,"wt2",red);
plot3(wt1-wt2,"wt1-wt2",blue);
즐거운 하루되세요
> 로즈버드 님이 쓴 글입니다.
> 제목 : 안녕하세요
> study(title="W", shorttitle="B")
n1 = input(10, "Channel Length")
n2 = input(21, "Average Length")
obLevel1 = input(60, "Over Bought Level 1")
obLevel2 = input(53, "Over Bought Level 2")
osLevel1 = input(-60, "Over Sold Level 1")
osLevel2 = input(-53, "Over Sold Level 2")
ap = hlc3
esa = ema(ap, n1)
d = ema(abs(ap - esa), n1)
ci = (ap - esa) / (0.015 * d)
tci = ema(ci, n2)
wt1 = tci
wt2 = sma(wt1,4)
plot(0, color=gray)
plot(obLevel1, color=red)
plot(osLevel1, color=green)
plot(obLevel2, color=red, style=3)
plot(osLevel2, color=green, style=3)
plot(wt1, color=green)
plot(wt2, color=red, style=3)
plot(wt1-wt2, color=blue, style=3)
문의드립니다. 감사합니다.