odinsmith4: What needs to be added or changed to make this "if" work correctly?
A function call to get the current bar's tick volume.
Perhaps you should read the manual.
do you search for something like this
int volumenreal = iVolumes (_Symbol, PERIOD_CURRENT, VOLUME_REAL); int volumentics = iVolumes (_Symbol, PERIOD_CURRENT, VOLUME_TICK);

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
if(VOLUME_TICK<100) // If The Tick Volume Is Less Than 100 Then Terminate OnTimer() Function
return;
What needs to be added or changed to make this "if" work correctly?