On my website I have a link you need to read about what to expect when placing AllPairs.
I mentioned it earlier today when saying I posted an update to AllPairs to my websote, but maybe you missed it.
After reading it, and the other link about if you have trouble with AllPairs, and if you still have questions, post a screenshot with the question.
Thanks.
Don
effluvium wrote:Hi disbellj
I noticed that you have used a lot your function DivZero to avoid unpredictable result when dividing by Zero.
I suggest you this small optimisation to speed up the procedure by saving 1 instruction. So here it is:
By the way it's taking a lot of time to synchronize. You've said that if your indicator is not showing anything, that means there's not much history from the _broker.Code: Select all
double DivZeroDon(double value1, double value2) { if(value1 == 0 || value2 == 0) return (0.0) ; else return ( value1/value2 ); }
Could you tell me the minimum number of candles to make your indi working ? Thanks in advance.