account history information

 

I am extracting all trades from account history as well from trades and storing in a MySQL database

I would like to get the funding info too like deposits and withdrawals. Is it possible? Did not find any information

in the MQL4 documentation.

 
 
ingvar_e:

I am extracting all trades from account history as well from trades and storing in a MySQL database

I would like to get the funding info too like deposits and withdrawals. Is it possible? Did not find any information

in the MQL4 documentation.

if OrderType() == 6 then its a financial operation. After that all we have to do is look at OrderProfit().
Reason: