-
Notifications
You must be signed in to change notification settings - Fork 2k
Stop loss trigger granularity #1246
Comments
executeStop() is [sic] executed for every new trade we polled from the exchange as long as my_trades/my_prev_trades is not empty. |
OK, thanks for clarification. I got confused by the fact that the executeStop(true) call is done from within the |
Turns out that I'm not that bad in reading JS code. Simple |
Totally agree with @laloch, Stoploss is not required if it is evaluated once per hour for an hourly candle. |
System information
Hi,
as of now (if I understand the node.js "spaghetti" right) the executeStop(...) function, which takes care about triggering all our stop orders, is being called only on the period edge. This behavior makes Zenbot unsuitable for very high volatility (cryptocurrency) markets using long periods. I wonder if it wouldn't be better to rather evaluate and trigger the stops in periods based on c.poll_trades or its multiples.
The text was updated successfully, but these errors were encountered: