Can someone help me how to define the gekkoga config for RSI_BULL_BEAR?
How to set the right values here:
---snip end of the config---
candleValues: [5],
getProperties: () => ({
historySize: randomExt.integer(1000, 100),
short: randomExt.integer(15,5),
long: randomExt.integer(40,15),
signal: randomExt.integer(12,6),
thresholds: {
up: randomExt.float(20,0).toFixed(2),
down: randomExt.float(0,-20).toFixed(2),
persistence: randomExt.integer(9,0),
},
candleSize: randomExt.pick(config.candleValues)
})
};
I want to fill in something like:
# SMA Trends
SMA_long = 1000;100
SMA_short = 100;20
# BULL
BULL_RSI = 7;15
BULL_RSI_high = 40;100
BULL_RSI_low = 30;90
# BEAR
BEAR_RSI = 10;20
BEAR_RSI_high = 40;60
BEAR_RSI_low = 10;50
Thank you!
@tommiehansen is you GAB-tool public? :-)
How to set the right values here:
---snip end of the config---
candleValues: [5],
getProperties: () => ({
historySize: randomExt.integer(1000, 100),
short: randomExt.integer(15,5),
long: randomExt.integer(40,15),
signal: randomExt.integer(12,6),
thresholds: {
up: randomExt.float(20,0).toFixed(2),
down: randomExt.float(0,-20).toFixed(2),
persistence: randomExt.integer(9,0),
},
candleSize: randomExt.pick(config.candleValues)
})
};
I want to fill in something like:
# SMA Trends
SMA_long = 1000;100
SMA_short = 100;20
# BULL
BULL_RSI = 7;15
BULL_RSI_high = 40;100
BULL_RSI_low = 30;90
# BEAR
BEAR_RSI = 10;20
BEAR_RSI_high = 40;60
BEAR_RSI_low = 10;50
Thank you!
@tommiehansen is you GAB-tool public? :-)