Quote:
Originally Posted by wolfe
I took the indicator from post #4 and changed a few things for testing. I didn't change how the indicator functions. My question is does anybody know how to change this indicator so that it doesn't slow down the processor so much? Back testing takes forever!
Have a look. 
|
Shouldn't the limit be set by:
PHP Code:
int limit = Bars - IndicatorCounted() - 1;
because there's not really any need to recompute the past values, is there?