i tried the following with the first quarter XRP/EUR at candle size 15 with warm up x10. It made +255% while the market went -76%.
Admitting i have no clue what i did, i just tweaked the values. Thoughts?
i am new to Gekko and copied this Code (RSI_BULL_BEAR) as descriped, but I dont get any Backtest Values.
Even the Parameters are not loaded in the Parameters Box.
When I copy them to it and try some settings (even with very long Warmup >1100) I dont get any Backtest data.
Quote:None for me, so far.
It's all great in backtests, but, in live trading, at the bottom line, I've lost almost half my money. Having lots of fun though, trying to make them back
Ouch, hope half wasn't too much. How long did you have the bot running?
It just lost me almost 10% of my money, all in just one bad trade.
Look at the screenshot, it bought high and sold low. My parameters are conspiring against me, they are taking my money. These are the parameters that make 30% gains in 3 months, supposedly. I've been running live for a month, I'm down 10%, just because of this single last trade.
This is supposed to happen as the trend switch from bull to bear, so this trend switch sell acts like a stop loss. Considering the market is still dropping, the strat should have saved you from further losses, although 10% is a a bit rough.
@hondong
Did you add the TOML file in the correct location? That's usually the reason why you don't see any parameters in the parameters section when running UI.
This is supposed to happen as the trend switch from bull to bear, so this trend switch sell acts like a stop loss. Considering the market is still dropping, the strat should have saved you from further losses, although 10% is a a bit rough.
@hondong
Did you add the TOML file in the correct location? That's usually the reason why you don't see any parameters in the parameters section when running UI.
Hi @crypto49er,
thanks, that was a beginner fault.
now, i get results.
(07-10-2018, 10:12 PM)crypto49er Wrote: This is supposed to happen as the trend switch from bull to bear, so this trend switch sell acts like a stop loss. Considering the market is still dropping, the strat should have saved you from further losses, although 10% is a a bit rough.
Yes, I know that's what it's supposed to do, what I was trying to say was that it reacts too slowly. This is the screenshot that I forgot to attach.
I would want to try to replace Simple Moving Average with Exponential Moving Average or DEMA for faster reaction, but I have zero node.js experience, just general old school programming. It shouldn't be so difficult, I'll keep looking at the code.
If you just want to switch from SMA to EMA, just go into the strat file and do a find and replace. DEMA works differently so you will have to change the code in the strat a bit to get it to work.
(07-26-2018, 10:35 PM)crypto49er Wrote: If you just want to switch from SMA to EMA, just go into the strat file and do a find and replace. DEMA works differently so you will have to change the code in the strat a bit to get it to work.
I switched from SMA to EMA. With the same parameters I was using for SMA, it's way worse with EMA in backtesting. I'm running backtests with different candlesizes now and different EMA_long and EMA_short.
07-29-2018, 10:51 AM (This post was last modified: 07-29-2018, 12:39 PM by h311m4n.)
Hey guys,
Still new to Gekko, been toying with Zenbot before but wanted to try something else out. I just have one issue with RSI_BULL_BEAR_ADX, when I backtest, it quits after like 2 seconds, in the console I see this:
Code:
<-- POST /api/backtest
xxx POST /api/backtest 500 634ms -
Error: non-error thrown:
This Gekko instance encountered an error and can't continue
at Object.onerror (/home/user/gekko/node_modules/koa/lib/context.js:105:40)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
Sorry if this is obvious and stupid, I'm just not too familiar with node.js just yet, but know my way around linux. Gekko is on an ubuntu 16.04 VM with node version 8.11.3
Thanks
EDIT: nevermind, I had mistakenly copied the test indicators from the link above instead of those in the indicators folder. Backtest running fine now!