Replies: 4 comments
-
Similar use case, but not for actual live trading with various brokers, it would be nice to be able to update a given strategy as new market data becomes available. In order to continually evaluate a strategy's performance and behavior. basically paper trading the strategies but updating the entire object. Rather than rebuilding the entire backtest or trying to figure out how to append two different time periods. Example, suppose I have multiple (10-20 strategies) that I would like continually update as new market data comes in. I would like to save to our database each evening, or hour, or whatever period, the most up to date |
Beta Was this translation helpful? Give feedback.
-
FWIW there is an open issue which may provide more info #81 |
Beta Was this translation helpful? Give feedback.
-
Working on a similar project ™️ . Quite entertaining attempting to implement the various features together. I will say that the project grows quite quickly ⏫ , once attempting to account for all the possibilities encountered during live trading. i.e. check for existing balance of token 💲 , check to make sure that prior orders have posted (critical if using 'limit' orders), deciding which statistics are valuable enough to display 〽️ , and which would just be adding to the confusion? |
Beta Was this translation helpful? Give feedback.
-
I have scheduled to run backtests every day and extract the last day result together with See the function See also the stub of the |
Beta Was this translation helpful? Give feedback.
-
I am wondering if someone already came with a way to run those strategies on live trading. I am running the back testing, and it looks fine to me. For example, when new data (candlestick) is available, it would nice to run some function to produce trade signal.
Using self.I(function_name ..), is time saver to avoid calculating indicators again.
If this possible, please share your knowledge. If not, what alternative could be available to use the strategies with minimal modifications.
Thank you
Beta Was this translation helpful? Give feedback.
All reactions