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
Suppose I am running a backtest using my own recorded data. If I only want to allow it to call process_market_book once a second, how could we refactor Flumine to allow this?
This might not be so straightforward if we need to conflate multiple streaming updates into one.
The text was updated successfully, but these errors were encountered:
We would need to process everything other than the actual strategy.check_market and strategy.process_market_book so that the middleware / order placement can be processed. So maybe add some extra logic to strategy.check_market, would just need to get the conflate value in there and a quick check on last 'processing'.
Suppose I am running a backtest using my own recorded data. If I only want to allow it to call
process_market_book
once a second, how could we refactor Flumine to allow this?This might not be so straightforward if we need to conflate multiple streaming updates into one.
The text was updated successfully, but these errors were encountered: