Use better naming

This commit is contained in:
Matthias 2022-04-08 17:30:23 +02:00
parent 1435d26996
commit 238ff6c9fe
5 changed files with 6 additions and 6 deletions

View File

@ -182,7 +182,7 @@
"disable_dataframe_checks": false,
"strategy": "SampleStrategy",
"strategy_path": "user_data/strategies/",
"files": [],
"add_config_files": [],
"dataformat_ohlcv": "json",
"dataformat_trades": "jsongz"
}

View File

@ -99,8 +99,8 @@ def load_from_files(files: List[str], base_path: Path = None, level: int = 0) ->
file = base_path / file
config_tmp = load_config_file(str(file))
if 'files' in config_tmp:
config_sub = load_from_files(config_tmp['files'], file.resolve().parent, level + 1)
if 'add_config_files' in config_tmp:
config_sub = load_from_files(config_tmp['add_config_files'], file.resolve().parent, level + 1)
files_loaded.extend(config_sub.get('config_files', []))
deep_merge_dicts(config_sub, config_tmp)

View File

@ -1,6 +1,6 @@
{
// This file fails as it's loading itself over and over
"files": [
"add_config_files": [
"./recursive.json"
]
}

View File

@ -15,7 +15,7 @@
"order_book_top": 1,
"price_last_balance": 0.0
},
"files": [
"add_config_files": [
"./test_pricing2_conf.json"
]
}

View File

@ -1,5 +1,5 @@
{
"files": [
"add_config_files": [
"test_base_config.json",
"test_pricing_conf.json"
]