Home › Forums › CDC Forums › Supporting Members Area — รวบรวมสูตร Downloads และระบบการเทรด › CDC ATR Trailing Stop › Reply To: CDC ATR Trailing Stop
17/05/2021 at 7:45 pm
#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;