-
Notifications
You must be signed in to change notification settings - Fork 2k
feature request: Add Strategies tester #378
Comments
https://github.com/carlos8f/zenbot/tree/master/scripts/auto_backtester doesn't do more or less what you want? |
Thanks @DeviaVir . Yup, that is pretty close. I have enhanced my script to use it and the script is now:
Two things:
Tested strategy cci_srsi --==Zenbot 4.04 Backtester v0.2==-- Backtesting [176] iterations for strategy trend_ema... [ 1/176 ] ./zenbot.sh sim poloniex.ETH-USDT --days 15 cci_srsi --trend_ema=20 --oversold_rsi=20 --oversold_rsi_periods=15 --neutral_rate=0.1 --period=2m --min_periods=52 |
I got multiple csv files, |
sort each csv so that you have the best result on top. Then use the strategy that yields the best return. I have abandoned the auto-tester and use now the new ML feature introduced: https://github.com/carlos8f/zenbot/blob/master/commands/train.js |
Have created a small strategies tester script. Could we add something like this?
#get available strategies from folder
strategies=$(ls -1 extensions/strategies)
for s in $strategies
do
echo "Tested strategy $s"
./zenbot.sh sim --days 15 --strategy $s
done
The text was updated successfully, but these errors were encountered: