Gunbot v27.0.9_beta
Experimental: implement the following order types for custom strategies (actually available only for binance/binanceFuture/mex_gunthy/futures_gunthy):
STOP_LOSS
STOP_LOSS_LIMIT
TAKE_PROFIT
TAKE_PROFIT_LIMIT
TRAILING_STOP_MARKET (only futures)
Instructions:
You can use the following methods in your custom strat:
– STOP_LOSS_Buy(symbol, volume, price, stopPrice)
– STOP_LOSS_LIMIT_Buy (symbol, volume, price, stopPrice)
– TAKE_PROFIT_Buy(symbol, volume, price, stopPrice)
– TAKE_PROFIT_LIMIT_Buy(symbol, volume, price, stopPrice)
– TRAILING_STOP_MARKET_Buy(symbol, volume, price, callbackRate)
– STOP_LOSS_Sell(symbol, volume, price, stopPrice)
– STOP_LOSS_LIMIT_Sell(symbol, volume, price, stopPrice)
– TAKE_PROFIT_Sell(symbol, volume, price, stopPrice)
– TAKE_PROFIT_LIMIT_Sell(symbol, volume, price, stopPrice)
– TRAILING_STOP_MARKET_Sell (symbol, volume, price, callbackRate)
Please take in consideration binance docs about how to use stopPrice and callbackRate.
– address an issue with double encryption of starkPrivateKey, privKey and passphrase for dydx users.
– Chart: don’t force reload after socket reconnect on mobile.
– Chart: speed up drawing of strategy specific indicators
– Trading settings: fix problem where button to update pair settings was inactive when a setting was changed compared to config, but not compared to default settings.
– Chart: bring back the default volume indicator.
– Markets sidebar: sync symbol list with chart symbol list.
– Markets sidebar: fix issue where newly disabled pairs remained visible.