After submitting a backtesting job on the AlgoBulls platform, the AlgoBulls backtesting engine starts executing the strategy. During its execution, every event that occurs and the decisions that have been made by the AlgoBulls backtesting engine are recorded with exact timestamps in the form of textual logs. Examples of recorded activities include the given strategy config, every new candle generated at regular intervals, trades punched in by your strategy, the entry and exit of positions created by these trades, waits for new candles, and so on. These logs are quintessential for validating the strategy's behavior and debugging behavioral or performance issues that are frequently encountered while developing a strategy.
In this recipe, you will fetch backtesting logs for your strategy. The logs start coming up as soon as your submitted backtesting job reaches the 'STARTED' state. The AlgoBulls platform...