How can we get the volumes that the sever excuted for every tick?

 

How can we get the volumes that the sever excuted for every tick?  not the pending order's volume on the MOD or the Mx timeframe 's total volume .

include the volue amount of BID and ASK .


thank you .

 
current volume+current volume of ask chart
 
Vasyl Nosal:
current volume+current volume of ask chart

sorry ,i refer the total volume amount of the sever excuted ,all the mount of the market excuted in one tick .


 
yalewang:

How can we get the volumes that the sever excuted for every tick?  not the pending order's volume on the MOD or the Mx timeframe 's total volume .

include the volue amount of BID and ASK .


thank you .

You can use:

see also https://www.mql5.com/en/forum/18935

MqlTick last_tick;
ulong volume=last_tick.volume;
 
yalewang:

How can we get the volumes that the sever excuted for every tick?  not the pending order's volume on the MOD or the Mx timeframe 's total volume .

include the volue amount of BID and ASK .


thank you .

Unless I misunderstood, you can't with MT4.

With MT5 you can have it for symbols where Depth of Market data are provided.

 
thank all of you ,now i know the point .