You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
obi_mm(hbt, ...) became silent after the data was loaded.
So I don't understand if the backtest is even working. And what if it would require several days to backtest on my laptop?
It would be great to include a progress bar somewhere. tqdm package is a great tool to have pretty progressbars in raw python and in jupyter environments.
The text was updated successfully, but these errors were encountered:
I will consider showing progress. But, due to Numba limitations, displaying a progress bar might be challenging. Printing progress is acceptable, even if it might be a bit verbose. In the meantime, you can display progress as follows:
progress = 0
print('Start')
while hbt.elapse(interval):
if hbt.local.data is not None:
progress_update = int(hbt.local.row_num / len(hbt.local.data) * 100)
if progress_update != progress:
print(progress_update, '%')
progress = progress_update
TL;DR:
Feature request: progress bar for backtesting.
What I did:
obi_mm(hbt, ...)
became silent after the data was loaded.So I don't understand if the backtest is even working. And what if it would require several days to backtest on my laptop?
It would be great to include a progress bar somewhere.
tqdm
package is a great tool to have pretty progressbars in raw python and in jupyter environments.The text was updated successfully, but these errors were encountered: