I have been looking at the new v505 config file and in short I want to be able to set different strategy settings for different coin pairs
So if I do this
"pairs": {
"poloniex": {
"BTC_GAME": {
"strategy": "gain"
"TRADING_LIMIT": 0.002,
"BUY_LEVEL": 2,
"GAIN": 2,
},
"BTC_MAID": {
"strategy": "gain"
"TRADING_LIMIT": 0.04,
"BUY_LEVEL": 1,
"GAIN": 1,
}
}
},
Will it work and will my settings override the default settings here further down the config file ?
"gain": {
"TRADING_LIMIT": 0.001,
"PERIOD": 5,
"BUY_LEVEL": 0.1,
"GAIN": 0.6,
"EMA1": 24,
"EMA1": 12,
"HIGH_BB": 40,
"LOW_BB": 40,
"STDV": 2,
"SMAPERIOD": 20,
"BUYLVL1": 0.6,
"BUYLVL2": 2,
"BUYLVL3": 70,
"SELLLVL1": 0.6,
"SELLLVL2": 2,
"SELLLVL3": 70,
"BUYLVL": 2,
"SELLLVL": 2,
"LASTPOINTS": 5,
"AVGPOINTS": 250,
"AVGMINIMUM": 0.00000001,
"GUNTHY_API": false,
"PP_BUY": 0.00000001,
"PP_SELL": 0.12345678,
"PANIC_SELL": false,
"DOUBLE_UP": false,
"STOP_LIMIT": 60,
"BUY_ENABLED": true,
"MIN_VOLUME_TO_BUY": 0.0001,
"MIN_VOLUME_TO_SELL": 0.0001
Cheers