remove test config now that spice_rack adapts to any config

This commit is contained in:
robcaulk 2022-09-18 13:05:13 +02:00
parent 793c54db9d
commit 91e2a05aff
2 changed files with 0 additions and 31 deletions

View File

@ -1,30 +0,0 @@
{
"freqai": {
"enabled": true,
"purge_old_models": true,
"train_period_days": 4,
"backtest_period_days": 2,
"identifier": "spicy-id",
"feature_parameters": {
"include_timeframes": [
"5m"
],
"include_corr_pairlist": ["ADA/BTC", "DASH/BTC"],
"label_period_candles": 20,
"include_shifted_candles": 1,
"DI_threshold": 0.9,
"weight_factor": 0.9,
"indicator_periods_candles": [
10
]
},
"data_split_parameters": {
"test_size": 0,
"random_state": 1
},
"model_training_parameters": {
"n_estimators": 800
}
}
}

View File

@ -326,7 +326,6 @@ def test_spice_rack(mocker, default_conf, tmpdir, caplog):
strategy.dp = DataProvider(default_conf, exchange)
default_conf.update({"freqai_spice_rack": "true"})
# default_conf.update({"freqai_config": "test_config.json"})
default_conf.update({"freqai_identifier": "spicy-id"})
default_conf["config_files"] = [Path('config_examples', 'config_freqai.example.json')]
default_conf["timerange"] = "20180110-20180115"