chore: remove hdf5 from supported data handlers

This commit is contained in:
Matthias
2025-01-06 13:25:30 +01:00
parent de2b8dcfdd
commit 1f0d304190
2 changed files with 1 additions and 3 deletions

View File

@@ -1055,7 +1055,6 @@
"enum": [ "enum": [
"json", "json",
"jsongz", "jsongz",
"hdf5",
"feather", "feather",
"parquet" "parquet"
], ],
@@ -1067,7 +1066,6 @@
"enum": [ "enum": [
"json", "json",
"jsongz", "jsongz",
"hdf5",
"feather", "feather",
"parquet" "parquet"
], ],

View File

@@ -58,7 +58,7 @@ AVAILABLE_PAIRLISTS = [
"SpreadFilter", "SpreadFilter",
"VolatilityFilter", "VolatilityFilter",
] ]
AVAILABLE_DATAHANDLERS = ["json", "jsongz", "hdf5", "feather", "parquet"] AVAILABLE_DATAHANDLERS = ["json", "jsongz", "feather", "parquet"]
BACKTEST_BREAKDOWNS = ["day", "week", "month"] BACKTEST_BREAKDOWNS = ["day", "week", "month"]
BACKTEST_CACHE_AGE = ["none", "day", "week", "month"] BACKTEST_CACHE_AGE = ["none", "day", "week", "month"]
BACKTEST_CACHE_DEFAULT = "day" BACKTEST_CACHE_DEFAULT = "day"