스톡캐스틱 fast(5)지표식에서
Trix(12)를넣어 스토캐스틱 트릭스 지표를
만들수있는지 부탁드림니다
((Trix(12)현재가-trix(12)5일중최저가))/
((Trix(12)5일중최고가-Trix(12)5일중최저가))
aa=trix(12) ;
bb=highest(H,trix(12),5) ;
cc=lowest(L,trix(12),5 ;
dd=aa-cc/bb-cc
plot1 = (dd) ;
이렇게해보았는데 잘되지 못해서질문드림
답변 1
예스스탁
예스스탁 답변
2024-03-15 10:12:38
안녕하세요
예스스탁입니다.
input : P(12),sto1(5);
var : aa(0),hh(0),ll(0),fk(0);
aa = trix(P) ;
hh = highest(aa,sto1);
ll = lowest(aa,sto1) ;
fk = (aa-ll)/(hh-ll)*100;
plot1(fk);
PlotBaseLine1(20);
PlotBaseLine2(80);
즐거운 하루되세요
> jd01 님이 쓴 글입니다.
> 제목 : 수식질문
> 스톡캐스틱 fast(5)지표식에서
Trix(12)를넣어 스토캐스틱 트릭스 지표를
만들수있는지 부탁드림니다
((Trix(12)현재가-trix(12)5일중최저가))/
((Trix(12)5일중최고가-Trix(12)5일중최저가))
aa=trix(12) ;
bb=highest(H,trix(12),5) ;
cc=lowest(L,trix(12),5 ;
dd=aa-cc/bb-cc
plot1 = (dd) ;
이렇게해보았는데 잘되지 못해서질문드림