swapped default_conf for default_conf_usdt and ticker for ticker_usdt
This commit is contained in:
parent
7eebb6bb2d
commit
ba5d78f005
@ -378,6 +378,22 @@ def get_default_conf_usdt(testdatadir):
|
|||||||
configuration.update({
|
configuration.update({
|
||||||
"stake_amount": 10.0,
|
"stake_amount": 10.0,
|
||||||
"stake_currency": "USDT",
|
"stake_currency": "USDT",
|
||||||
|
"exchange": {
|
||||||
|
"name": "binance",
|
||||||
|
"enabled": True,
|
||||||
|
"key": "key",
|
||||||
|
"secret": "secret",
|
||||||
|
"pair_whitelist": [
|
||||||
|
"ETH/USDT",
|
||||||
|
"LTC/USDT",
|
||||||
|
"XRP/USDT",
|
||||||
|
"NEO/USDT"
|
||||||
|
],
|
||||||
|
"pair_blacklist": [
|
||||||
|
"DOGE/USDT",
|
||||||
|
"HOT/USDT",
|
||||||
|
]
|
||||||
|
},
|
||||||
})
|
})
|
||||||
return configuration
|
return configuration
|
||||||
|
|
||||||
@ -424,9 +440,9 @@ def ticker_sell_down():
|
|||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def ticker_usdt():
|
def ticker_usdt():
|
||||||
return MagicMock(return_value={
|
return MagicMock(return_value={
|
||||||
'bid': 1.99,
|
'bid': 2.0,
|
||||||
'ask': 2.0,
|
'ask': 2.01,
|
||||||
'last': 1.99,
|
'last': 2.0,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user