예스스탁
예스스탁 답변
2023-02-14 13:03:08
안녕하세요
예스스탁입니다.
var : aa(0),bb(0),cc(0),dd(0),ee(0),ff(0),gg(0),hh(0);
var : kk(0),rr(0),ku(0),kl(0);
aa = ma(close,3);
bb = ma(close,5);
cc = ema(close,18);
dd = ema(close,20);
ee = ma(close,50);
ff = ma(close,89);
gg = ema(close,144);
hh = ma(close,200);
kk = ema(close,35);
rr = ma(TrueRange,35*3) + ma (TrueRange,35*2) - ma(TrueRange,35);
ku = kk + rr*0.5;
kl = kk - rr*0.5;
plot1(aa,"Fast Speed Line");
plot2(bb,"Slow Speed Line");
plot3(cc,"Fast Primary Trend Line");
plot4(dd,"Slow Primary Trend Line");
plot5(ee,"Trend Line - 1");
plot6(ff,"Trend Line - 2");
plot7(gg,"Trend Line - 3");
plot8(hh,"Trend Line - 4");
plot9(kk,"No Trend Zone - Midline");
plot10(ku,"No Trend Zone - Upperline");
plot11(kl,"No Trend Zone - Lowerline");
즐거운 하루되세요
> 도여니 님이 쓴 글입니다.
> 제목 : 수식부탁드립니다.호프만
> // Based on Videos from youtube, by Rob Hoffman
a = sma(close,3)
b = sma(close,5)
c = ema(close,18)
d = ema(close,20)
e = sma(close,50)
f = sma(close,89)
g = ema(close,144)
h = sma(close,200)
k = ema(close,35)
r = rma(tr,35)
ku = k + r*0.5
kl = k - r*0.5
plot(a, title = "Fast Speed Line", linewidth = 2, color = #0000FF)
plot(b, title = "Slow Speed Line", linewidth = 2, color = fuchsia)
plot(c, title = "Fast Primary Trend Line", linewidth = 3, color = #00FF00)
plot(d, title = "Slow Primary Trend Line", linewidth = 3, color = #000000)
plot(e, title = "Trend Line - 1", linewidth = 3, color = #0000FF, style = circles)
plot(f, title = "Trend Line - 2", linewidth = 3, color = #20B2AA)
plot(g, title = "Trend Line - 3", linewidth = 3, color = #FF4500)
plot(h, title = "Trend Line - 4", linewidth = 3, color = fuchsia)
plot(k, title = "No Trend Zone - Midline", linewidth = 2, color = #3CB371)
plot(ku, title = "No Trend Zone - Upperline", linewidth = 2, color = #3CB371)
plot(kl, title = "No Trend Zone - Lowerline", linewidth = 2, color = #3CB371)