ssssi / freqtrade_strs

Trading Strategies for Freqtrade
264 stars 77 forks source link

Backtest of E0V1E.py #25

Open Ajin9n9 opened 2 weeks ago

Ajin9n9 commented 2 weeks ago

Hi... I'm new to freqtrade and came across your strategy via strat.ninja and would like to try it. I copied the config.json file and the E0V1E.py strategy. The config.json uses VolumePairList except that this is not supported by the backtest so should I put pairs in config.json and switch to StaticPairList mode or whatever...?

Thanks in advance

ssssi commented 2 weeks ago

yeah,use staticpairlist mode and read freqtrade doc about backtest part

Ajin9n9 commented 2 weeks ago

Ok thank you very much for your help

Mastaaa1987 commented 1 week ago

if you want to visualize backtests, or create every art config you need to start freqtrade in webserver mode... freqtrade webserver -c user_data/config.json You can compare backtests, shows every pair & every candle or trade ... The Access to Server @ http://127.0.0.1:8080 (or what the ip is from trade ui is ....) Mfg

14790897 commented 5 days ago

you can use MarketCapPairList which can be used in backtest

 {
      "method": "MarketCapPairList",
      "number_assets": 250,
      "max_rank": 250,
      "refresh_period": 86400,
      "categories": []
    },
Dadacticiel commented 3 days ago

How do you download-data for MarketCapPairList for backtesting ?

Mastaaa1987 commented 3 days ago

Make a static pair list & into the Whitelist ".*/USDT" ... Now you can Download Data for all pairs ...

14790897 commented 3 days ago

freqtrade download-data --exchange binance --pairs .*/USDT

How do you download-data for MarketCapPairList for backtesting ?