

Hey guys just discovered this thread im also a Gekko user just experimented with the back testing and now on live trade i was playing with settings and came up with this strategie.
It is quite conservative and does not many trades, but it is about +200% in the last 2 Month
Now i just don't figure
1. How to install talib on a windows PC and
2. is there a way to adjust the amount / percentage of available funds the bot shall spend on each Trade?
3. How can i combine strategies for example a Fibo Retracement wit an DEMA or something?
Cheers
Code:
// Exponential Moving Averages settings:
config.DEMA = {
// EMA weight (α)
// the higher the weight, the more smooth (and delayed) the line
short: 13,
long: 19,
// amount of candles to remember and base initial EMAs on
// the difference between the EMAs (to act as triggers)
thresholds: {
down: -1,
up: 1
}
It is quite conservative and does not many trades, but it is about +200% in the last 2 Month
Now i just don't figure
1. How to install talib on a windows PC and
2. is there a way to adjust the amount / percentage of available funds the bot shall spend on each Trade?
3. How can i combine strategies for example a Fibo Retracement wit an DEMA or something?
Cheers