Changing the default OHLCV data from json to hdf5

This commit is contained in:
xaveedra
2022-09-13 19:29:47 +03:00
parent 26441820a9
commit 4be671c59c
2 changed files with 5 additions and 5 deletions

View File

@@ -424,12 +424,12 @@ CONF_SCHEMA = {
'dataformat_ohlcv': {
'type': 'string',
'enum': AVAILABLE_DATAHANDLERS,
'default': 'json'
'default': 'hdf5'
},
'dataformat_trades': {
'type': 'string',
'enum': AVAILABLE_DATAHANDLERS,
'default': 'jsongz'
'default': 'hdf5'
},
'position_adjustment_enable': {'type': 'boolean'},
'max_entry_position_adjustment': {'type': ['integer', 'number'], 'minimum': -1},