Get the Balance Drawdown Maximal

 

Hi, on the MetaTrader5 terminal, when we click on HISTORY, and then right click on HISTORY we can download a REPORT file (HTML). There usefull information that get shown on this file. Such as : balance Drawdown Maximal, Short Trades (won %), Long Trades (won %) and so on...


I was wondering, is there a way to scrap those data directly from the mt5 python API, or a way to download this file automatically ?


Thanks!

 
discord: Hi, on the MetaTrader5 terminal, when we click on HISTORY, and then right click on HISTORY we can download a REPORT file (HTML). There usefull information that get shown on this file. Such as : balance Drawdown Maximal, Short Trades (won %), Long Trades (won %) and so on... I was wondering, is there a way to scrap those data directly from the mt5 python API, or a way to download this file automatically?
Using the Python API you will have to pull the history details and calculated the statistics yourself. Python integration does not offer any other functionality besides what the API allows.
 
Fernando Carreiro #:
Using the Python API you will have to pull the history details and calculated the statistics yourself. Python integration does not offer any other functionality besides what the API allows.

Great, thank you!