Can we add these three pieces of information to the backtest stats? Please
1) max used funds
It’s an important metric to understand how much money we use when more than one active deal (with DCAs) is used - it’s also important for -1 simultaneous deals as it give us the actual max used funds
2) max % deviation
This is one of the most important value when looking at the price movement from the initial base order - it’s important to understand the effectiveness of our strategy and the number of potential DCAs
3) max simultaneous deals
It helps to understand the usage of funds and how many simultaneous deals the bot opens over the backtesting time
The formula finds the maximum funds required at any point in time for all active trades, including the base order and any added DCA. It helps finding the maximum funds required when trades overlap.
The Max % Deviation calculates the maximum percentage price deviation from the initial base order price over a trade’s lifespan. It shows how far the price moved against the base order, which can highlight the need for more DCAs or strategy adjustments.
Explanation: This is the maximum percentage change from the base order price, either upwards or downwards. It can help assess if the strategy’s DCA limits or evaluates the entry points.
Let me know if anything isn’t clear or if you need further clarification.
You have already all the values from the current stats it should be easier to get these new data considering the amount of info you have already implemented.
This above could also be useful data to understand how many deals use x amount of DCA - easy to calculate on 100 deals 20 deals used 3 DCA therefore the 20% of the deals closed the trade using only 3 DCA - you already have all these info it will be a quick recap. Also be useful in future when comparing different strategies