01-25-2018, 05:41 PM
Hey!
The hard thing here is how Gekko works, within Gekko there are 2 different concepts:
1. the strategy (when to buy/sell) <- this one people script themselves.
2. the execution logic (how to buy/sell, what kind of order to place at what price) <- this one is quite static.
The only communication between them is when the strategy signals an advice to take a certain position (either go LONG or SHORT). The hard thing about stop losses is that they kind of overlap between the two. And we need to think of how strategies can communicate stoploss parameters as port of a signal.
The hard thing here is how Gekko works, within Gekko there are 2 different concepts:
1. the strategy (when to buy/sell) <- this one people script themselves.
2. the execution logic (how to buy/sell, what kind of order to place at what price) <- this one is quite static.
The only communication between them is when the strategy signals an advice to take a certain position (either go LONG or SHORT). The hard thing about stop losses is that they kind of overlap between the two. And we need to think of how strategies can communicate stoploss parameters as port of a signal.