Volume of what ?
volume bars (volume of trading between 2 points)
- Do realize that forex volume is only the count of price changes from your broker?
int x1 = .. int x2 = .. int vol= 0; // Assuming x2 > x1 for (int iBar = x2; iBar >= x1; iBar--) vol += Volume[iBar];
WHRoeder:
Is it price changes only or is it ticks ? my understanding is that a tick can also be things other than price changes.
- Do realize that forex volume is only the count of price changes from your broker?
yes whroeder,, thanks alot,,, :)
RaptorUK:
Is it price changes only or is it ticks ? my understanding is that a tick can also be things other than price changes.
Is it price changes only or is it ticks ? my understanding is that a tick can also be things other than price changes.
Not sure. A tick can be other things, but changing volume without a price change doesn't really make sense.
Even if so, the other parameters don't change very often, so would be minor noise volume. (IBFX averages 50-120 ticks/min. Some brokers double that, some half.)
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
hello, please if i have 2 points on chart
x1 and x2
how can i calculate the total volume between them and display it in the chart,,,
thanks alot