Reply To: CDC ATR Trailing Stop

#40292
longkong
Participant

สูตรของ Metastock เขียนใน indicator builder นะครับ

Periods:=Input(“Enter the number of periods”,1,100,11);
Factor:=Input(“Enter the number of ATR factor”,1,100,3);
plot0:= HHV(C-Factor * ATR(Periods) , Periods);
plot1:= If(C>plot0 ,plot0 , 0) ;
plot1;