I'm having issues to config Gekko properly. In fact, I'm trying to reproduce the same MACD settings I use on TradingView to monitor the market. For example:
Fast length: xx
Slow length: yy
Signal Smoothing: 9
Now, translating this to Gekko:
config.MACD = {
short: xx,
long: yy,
signal: 9
};
Moreover, I'm using an interval of 30 minutes, and I'm not sure how can I set this in Gekko's configuration. Would it be the "candleSize" property of the tradingAdvisor object?
And more: Gekko advices are very different from the TradingView ones. It's telling me to GO LONG when the price is HIGH and GO SHORT when the price is LOW, most of the time. Does Gekko need some time to analize the market and store prices to advice effectively?
Thanks in advance for any insights.
HI mate,
did you manage to pass the step in which he starts to advice? i am currently stuck there for a week. keep telling it doesnt have enough data.
anyone managed to pass this step?