2017-11-07 17:24:51 +00:00
|
|
|
# pragma pylint: disable=missing-docstring
|
2017-11-07 19:12:56 +00:00
|
|
|
from datetime import datetime
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
|
2017-11-07 15:18:29 +00:00
|
|
|
import pytest
|
2017-11-07 19:12:56 +00:00
|
|
|
from jsonschema import validate
|
|
|
|
from telegram import Message, Chat, Update
|
|
|
|
|
|
|
|
from freqtrade.misc import CONF_SCHEMA
|
2017-11-07 15:18:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
2017-11-07 19:12:56 +00:00
|
|
|
def default_conf():
|
|
|
|
""" Returns validated configuration suitable for most tests """
|
|
|
|
configuration = {
|
2017-11-07 21:27:44 +00:00
|
|
|
"max_open_trades": 1,
|
2017-11-07 19:12:56 +00:00
|
|
|
"stake_currency": "BTC",
|
2017-12-17 21:07:56 +00:00
|
|
|
"stake_amount": 0.001,
|
2017-12-25 07:51:41 +00:00
|
|
|
"fiat_display_currency": "USD",
|
2017-11-07 19:12:56 +00:00
|
|
|
"dry_run": True,
|
|
|
|
"minimal_roi": {
|
|
|
|
"40": 0.0,
|
|
|
|
"30": 0.01,
|
|
|
|
"20": 0.02,
|
|
|
|
"0": 0.04
|
|
|
|
},
|
2017-11-23 16:43:19 +00:00
|
|
|
"stoploss": -0.10,
|
2017-11-07 19:12:56 +00:00
|
|
|
"bid_strategy": {
|
|
|
|
"ask_last_balance": 0.0
|
|
|
|
},
|
|
|
|
"exchange": {
|
|
|
|
"name": "bittrex",
|
|
|
|
"enabled": True,
|
|
|
|
"key": "key",
|
|
|
|
"secret": "secret",
|
|
|
|
"pair_whitelist": [
|
|
|
|
"BTC_ETH",
|
|
|
|
"BTC_TKN",
|
|
|
|
"BTC_TRST",
|
2017-11-13 20:34:47 +00:00
|
|
|
"BTC_SWT",
|
|
|
|
"BTC_BCC"
|
2017-11-07 19:12:56 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"telegram": {
|
|
|
|
"enabled": True,
|
|
|
|
"token": "token",
|
|
|
|
"chat_id": "0"
|
|
|
|
},
|
|
|
|
"initial_state": "running"
|
|
|
|
}
|
|
|
|
validate(configuration, CONF_SCHEMA)
|
|
|
|
return configuration
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def update():
|
|
|
|
_update = Update(0)
|
|
|
|
_update.message = Message(0, 0, datetime.utcnow(), Chat(0, 0))
|
|
|
|
return _update
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def ticker():
|
|
|
|
return MagicMock(return_value={
|
2017-12-17 21:07:56 +00:00
|
|
|
'bid': 0.00001098,
|
|
|
|
'ask': 0.00001099,
|
|
|
|
'last': 0.00001098,
|
2017-11-07 19:12:56 +00:00
|
|
|
})
|
|
|
|
|
2017-12-19 05:58:02 +00:00
|
|
|
|
2017-12-17 21:07:56 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def ticker_sell_up():
|
|
|
|
return MagicMock(return_value={
|
|
|
|
'bid': 0.00001172,
|
|
|
|
'ask': 0.00001173,
|
|
|
|
'last': 0.00001172,
|
|
|
|
})
|
|
|
|
|
2017-12-19 05:58:02 +00:00
|
|
|
|
2017-12-17 21:07:56 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def ticker_sell_down():
|
|
|
|
return MagicMock(return_value={
|
|
|
|
'bid': 0.00001044,
|
|
|
|
'ask': 0.00001043,
|
|
|
|
'last': 0.00001044,
|
|
|
|
})
|
2017-11-07 19:12:56 +00:00
|
|
|
|
|
|
|
|
2017-11-13 20:34:47 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def health():
|
|
|
|
return MagicMock(return_value=[{
|
|
|
|
'Currency': 'BTC',
|
|
|
|
'IsActive': True,
|
|
|
|
'LastChecked': '2017-11-13T20:15:00.00',
|
|
|
|
'Notice': None
|
|
|
|
}, {
|
|
|
|
'Currency': 'ETH',
|
|
|
|
'IsActive': True,
|
|
|
|
'LastChecked': '2017-11-13T20:15:00.00',
|
|
|
|
'Notice': None
|
|
|
|
}, {
|
|
|
|
'Currency': 'TRST',
|
|
|
|
'IsActive': True,
|
|
|
|
'LastChecked': '2017-11-13T20:15:00.00',
|
|
|
|
'Notice': None
|
|
|
|
}, {
|
|
|
|
'Currency': 'SWT',
|
|
|
|
'IsActive': True,
|
|
|
|
'LastChecked': '2017-11-13T20:15:00.00',
|
|
|
|
'Notice': None
|
|
|
|
}, {
|
|
|
|
'Currency': 'BCC',
|
|
|
|
'IsActive': False,
|
|
|
|
'LastChecked': '2017-11-13T20:15:00.00',
|
|
|
|
'Notice': None
|
|
|
|
}])
|
|
|
|
|
|
|
|
|
2017-11-07 19:12:56 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def limit_buy_order():
|
|
|
|
return {
|
|
|
|
'id': 'mocked_limit_buy',
|
|
|
|
'type': 'LIMIT_BUY',
|
|
|
|
'pair': 'mocked',
|
|
|
|
'opened': datetime.utcnow(),
|
2017-12-17 21:07:56 +00:00
|
|
|
'rate': 0.00001099,
|
|
|
|
'amount': 90.99181073,
|
2017-11-07 19:12:56 +00:00
|
|
|
'remaining': 0.0,
|
|
|
|
'closed': datetime.utcnow(),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def limit_sell_order():
|
|
|
|
return {
|
|
|
|
'id': 'mocked_limit_sell',
|
|
|
|
'type': 'LIMIT_SELL',
|
|
|
|
'pair': 'mocked',
|
|
|
|
'opened': datetime.utcnow(),
|
2017-12-17 21:07:56 +00:00
|
|
|
'rate': 0.00001173,
|
|
|
|
'amount': 90.99181073,
|
2017-11-07 19:12:56 +00:00
|
|
|
'remaining': 0.0,
|
|
|
|
'closed': datetime.utcnow(),
|
|
|
|
}
|
2017-12-16 23:24:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def ticker_history():
|
|
|
|
return [
|
2017-12-18 16:36:00 +00:00
|
|
|
{
|
2017-12-16 23:24:21 +00:00
|
|
|
"O": 8.794e-05,
|
|
|
|
"H": 8.948e-05,
|
|
|
|
"L": 8.794e-05,
|
|
|
|
"C": 8.88e-05,
|
|
|
|
"V": 991.09056638,
|
|
|
|
"T": "2017-11-26T08:50:00",
|
|
|
|
"BV": 0.0877869
|
|
|
|
},
|
2017-12-18 16:36:00 +00:00
|
|
|
{
|
2017-12-16 23:24:21 +00:00
|
|
|
"O": 8.88e-05,
|
|
|
|
"H": 8.942e-05,
|
|
|
|
"L": 8.88e-05,
|
|
|
|
"C": 8.893e-05,
|
|
|
|
"V": 658.77935965,
|
|
|
|
"T": "2017-11-26T08:55:00",
|
|
|
|
"BV": 0.05874751
|
|
|
|
},
|
2017-12-18 16:36:00 +00:00
|
|
|
{
|
2017-12-16 23:24:21 +00:00
|
|
|
"O": 8.891e-05,
|
|
|
|
"H": 8.893e-05,
|
|
|
|
"L": 8.875e-05,
|
|
|
|
"C": 8.877e-05,
|
|
|
|
"V": 7920.73570705,
|
|
|
|
"T": "2017-11-26T09:00:00",
|
|
|
|
"BV": 0.7039405
|
|
|
|
}
|
2017-12-17 21:07:56 +00:00
|
|
|
]
|