Fix constants wrong parenteses

This commit is contained in:
Matthias 2020-02-23 13:51:16 +01:00
parent 30b0911645
commit f91d7beaa1

View File

@ -15,6 +15,7 @@ UNLIMITED_STAKE_AMOUNT = 'unlimited'
DEFAULT_AMOUNT_RESERVE_PERCENT = 0.05 DEFAULT_AMOUNT_RESERVE_PERCENT = 0.05
REQUIRED_ORDERTIF = ['buy', 'sell'] REQUIRED_ORDERTIF = ['buy', 'sell']
REQUIRED_ORDERTYPES = ['buy', 'sell', 'stoploss', 'stoploss_on_exchange'] REQUIRED_ORDERTYPES = ['buy', 'sell', 'stoploss', 'stoploss_on_exchange']
ORDERBOOK_SIDES = ['ask', 'bid']
ORDERTYPE_POSSIBILITIES = ['limit', 'market'] ORDERTYPE_POSSIBILITIES = ['limit', 'market']
ORDERTIF_POSSIBILITIES = ['gtc', 'fok', 'ioc'] ORDERTIF_POSSIBILITIES = ['gtc', 'fok', 'ioc']
AVAILABLE_PAIRLISTS = ['StaticPairList', 'VolumePairList', AVAILABLE_PAIRLISTS = ['StaticPairList', 'VolumePairList',
@ -113,15 +114,15 @@ CONF_SCHEMA = {
'minimum': 0, 'minimum': 0,
'maximum': 1, 'maximum': 1,
'exclusiveMaximum': False, 'exclusiveMaximum': False,
'use_order_book': {'type': 'boolean'}, },
'order_book_top': {'type': 'integer', 'maximum': 20, 'minimum': 1}, 'use_order_book': {'type': 'boolean'},
'check_depth_of_market': { 'order_book_top': {'type': 'integer', 'maximum': 20, 'minimum': 1},
'type': 'object', 'check_depth_of_market': {
'properties': { 'type': 'object',
'enabled': {'type': 'boolean'}, 'properties': {
'bids_to_ask_delta': {'type': 'number', 'minimum': 0}, 'enabled': {'type': 'boolean'},
} 'bids_to_ask_delta': {'type': 'number', 'minimum': 0},
}, }
}, },
}, },
'required': ['ask_last_balance'] 'required': ['ask_last_balance']