Hi everybody.
I always face losses with symbols that ranging for "TODAY" and can only make profits with symbols that volatile for "TODAY".
I'm finding ways to forecast / filter only the selected "volatile symbols" to trade for "TODAY" and to avoid those ranging symbols ... What I can think of is as follows (based on the past 24 days' D1 history) :-
Do you have any other brilliant ideas (in codes) that can reasonably to forecast / filter / select the "volatile symbols" to trade for "TODAY" ? Kindly write down your codes so that I can test it, thanks
I always face losses with symbols that ranging for "TODAY" and can only make profits with symbols that volatile for "TODAY".
I'm finding ways to forecast / filter only the selected "volatile symbols" to trade for "TODAY" and to avoid those ranging symbols ... What I can think of is as follows (based on the past 24 days' D1 history) :-
Inserted Code
int cnHL=0; for(int i=1; i<=24; i++) { // bar1 to bar24
double cHi0=iHigh(sym,1440,i), cLo0=iLow(sym,1440,i), cATR0=iATR(sym,1440,5,i);
if(cHi0-cLo0>cATR0) cnHL++;}
if(cnHL>=11) Entry Action : to select which Symbol to trade for "TODAY" (bar0) Do you have any other brilliant ideas (in codes) that can reasonably to forecast / filter / select the "volatile symbols" to trade for "TODAY" ? Kindly write down your codes so that I can test it, thanks