Hi,
I've run several tick replay tests using the EFS Performance Monitor to compare plotting several 3 min interval moving averages on a 55T chart.
The comparisons are:
creating series of the MAs using sym("ES #F, 3") in a 55T chart
vs using getGlobalValue(...) to retrieve values and plot them on a 55T chart from a 3 min chart.
Question:
1- Since getGlobal() can only retrieve real time values (so the values retrived are constant throughout the tick playback): Are the results of the EFS Performance tests reliable?
2- Is it possible to only plot the real time data without the horizontal lines plotted through historical bars (shown in the following image). Using the following has no effect.
Thanks,
Wayne
I've run several tick replay tests using the EFS Performance Monitor to compare plotting several 3 min interval moving averages on a 55T chart.
The comparisons are:
creating series of the MAs using sym("ES #F, 3") in a 55T chart
vs using getGlobalValue(...) to retrieve values and plot them on a 55T chart from a 3 min chart.
Question:
1- Since getGlobal() can only retrieve real time values (so the values retrived are constant throughout the tick playback): Are the results of the EFS Performance tests reliable?
2- Is it possible to only plot the real time data without the horizontal lines plotted through historical bars (shown in the following image). Using the following has no effect.
PHP Code:
if(getBarState()== BARSTATE_ALLBARS) return;
Wayne
Comment