예스스탁
예스스탁 답변
2025-01-20 16:25:40
안녕하세요
예스스탁입니다.
1 지표
input : len(10),len2(10);
var : oo(0),cc(0),hh(0),ll(0);
var : haclose(0),haopen(0),hahigh(0),halow(0);
var : o2(0),c2(0),h2(0),l2(0);
oo=ema(open,len);
cc=ema(close,len);
hh=ema(high,len);
ll=ema(low,len);
haclose = (oo+hh+ll+cc)/4;
haopen = iff(IsNaN(haopen[1]) == true,(oo + cc)/2 , (haopen[1] + haclose[1]) / 2);
hahigh = max(h, max(haopen,haclose));
halow = min(l, min(haopen,haclose));
o2=ema(haopen, len2);
c2=ema(haclose, len2);
h2=ema(hahigh, len2);
l2=ema(halow, len2);
Plot1(o2);
Plot2(c2);
Plot3(h2);
Plot4(l2);
2 강조
input : len(10),len2(10);
var : oo(0),cc(0),hh(0),ll(0);
var : haclose(0),haopen(0),hahigh(0),halow(0);
var : o2(0),c2(0),h2(0),l2(0);
oo=ema(open,len);
cc=ema(close,len);
hh=ema(high,len);
ll=ema(low,len);
haclose = (oo+hh+ll+cc)/4;
haopen = iff(IsNaN(haopen[1]) == true,(oo + cc)/2 , (haopen[1] + haclose[1]) / 2);
hahigh = max(h, max(haopen,haclose));
halow = min(l, min(haopen,haclose));
o2=ema(haopen, len2);
c2=ema(haclose, len2);
h2=ema(hahigh, len2);
l2=ema(halow, len2);
PlotPaintBar(h2,l2,c2,o2,"강조",IFf(C2>O2,Lime,Red));
즐거운 하루되세요
> 우주77 님이 쓴 글입니다.
> 제목 : 수식 문의 합니다
> 안녕하세요?
스무드 하이킨아시 지표식 부탁합니다.