I can't find where it's used
input int number_of_ticks=1000;
And what is this design used for:
static int ticks=0; //--- if(ticks==0) { ArrayInitialize(AskBuffer,0); ArrayInitialize(BidBuffer,0); }
or can't you do that?
static int ticks=0; //--- // if(ticks==0) // { ArrayInitialize(AskBuffer,0); ArrayInitialize(BidBuffer,0); // }
after lot of bars during backtest it generates an error "ArrayOutOfRange"
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Ticks:
It's a simple example of the indicator, that show ticks in the separate subwindow.
It uses the standard indicator's buffers, shifted by the PlotIndexSetInteger() function after each tick.
Author: MetaQuotes