-
-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kill switch feature #863
Comments
@sebasira at this moment, there is no way to do that as positions are supposed to be managed automatically by Cassandre. |
What I'd like is to have the possibility to freeze the Maybe a |
@sebasira ok, last question to be sure, so what you want is to be able to stop one or several opened position to be automatically closed by Cassandre? so if you want to froze a strategy, you will just call freeze on every strategy's positions ? |
Yes!
And also why not another methods at the Strategy level to freezes and defrost all positions? The idea is to stop the bot (or only some strategies of the bot), without stopping the whole application. |
@sebasira the question is the level to choose.
I think I will add an And i will add a method in strategy to set auto close to all its opened strategies. |
Feature available in |
I close. Reopen if any problem |
Is there a way to implement a kill switch functionality? Let's say that I want to stop an
@Strategy
from receiving ticker updates (or maybe receive them but not making any operation).Because I did something like that on my implementation and my custom
Strategy
has a way to stop creating newPositions
but I can not stop those position from being closed withTickerUpdates
The text was updated successfully, but these errors were encountered: