Scripts: Export trade history to CSV

 

Export trade history to CSV:

This script will export the trade history from MT5 selected between two dates. The resulting file is CSV that can be opened/imported with any spreadsheet software. Current version 1.0 does not add the takeprofit and stoploss. Any advice to improve this is welcomed.

Author: Fernando Morales

 

Hi,

Thanks for this, very helpful. 

I use a strategy based on P&L of points and so I have added the following....

double _points = -1;
int decimals=(int)SymbolInfoInteger(_symbol,SYMBOL_DIGITS);     
                                
_points = MathAbs((open_price - close_price))*MathPow(10,decimals);
                                
if (_profit < 0) _points = _points*-1;
 
Tom Burrows:

Hi,

Thanks for this, very helpful. 

I use a strategy based on P&L of points and so I have added the following....

Good point. I will add the profit in points including the swap and commission.

 
Hi, how to use this?