02-09-2018, 08:35 PM
Hello and thanks for sharing this strategy!
I'm trying to figure out how to set parameters in config.js using commandline not gekko UI
Is this right? Looking at other strategies in the config.js file i see they use a "thresholds" nested
brackets, but i don't know hot to adapt that for this strategy.
Thank you!
I'm trying to figure out how to set parameters in config.js using commandline not gekko UI
Code:
config.tradingAdvisor = {
enabled: true,
method: 'RSI_BULL_BEAR',
candleSize: 15,
historySize: 10,
adapter: 'sqlite'
}
config.RSI_BULL_BEAR = {
//SMA Trends
SMA_long: 1000,
SMA_short: 50,
//BULL
BULL_RSI: 10,
BULL_RSI_high: 80,
BULL_RSI_low: 60,
//BEAR
BEAR_RSI: 15,
BEAR_RSI_high: 50,
BEAR_RSI_low: 20
}
Is this right? Looking at other strategies in the config.js file i see they use a "thresholds" nested
brackets, but i don't know hot to adapt that for this strategy.
Thank you!