PureBytes Links
Trading Reference Links
|
> I noticed a possible problem with charts of Exp Average. They now start
> right at the beginning of the chart, with no delay as was true before.
what's so new about that? the xaverage code only requires a maxbarsback
of 1 so it sounds like it's just starting the plot 1 bar earlier.
> One could add code to make sure there are no points plotted, or systems
> checked, or possible problems caused by this, but this would seem like a
> lot of work, especially if the simple/series behavior is not evident in
> complex code.
you have ALWAYS had to give an xaverage time to "develop".
myaverage = xaverage(close, len);
if currentbar > len then begin....
--
Dennis
|