Does anyone have results they can share regarding backtest vs. live trading? #331
-
Hello, Would anyone like to share their results about the accuracy, realism of the library? For example, ran a strategy live for at least a week. Then downloaded historical data and run a backtest to compare the results to the live trades. I'm finding myself rewriting my own framework in Cython more often for performance. Than discovered this library, got me excited about maybe switching :p Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @crazy25000, this is somewhat of a hard question to answer, but let me detail out a couple of things nautilus currently doesnt do with relation to backtests:
I'd like to address these issues in the near future (weeks to months), but for now it depends on what sort of assumptions you're happy with. That being said, if you are only trading aggressively (fill or kill orders) and you aren't too concerned about how latency to the broker/exchange affects your orders, the backtest should very closely match what you would see running live in my opinion. Aside from the issues mentioned above, I think nautilus does a very good job of maintaining a very similar backtest and live trading environment (the code paths for backtest vs live are very similar) |
Beta Was this translation helpful? Give feedback.
Hey @crazy25000, this is somewhat of a hard question to answer, but let me detail out a couple of things nautilus currently doesnt do with relation to backtests:
I'd like to address these issues in the near future (weeks to months), but for now it depends on what sort of assumptions you're happy with.
That being said, if you are only trading aggressively (fill or kill orders) and you aren't too concerned about how latency to the broker/exchange affects your orders, the backtest should very closely match what you wou…