2021-06-02 18:50:08 +00:00
|
|
|
import json
|
2019-06-16 08:13:24 +00:00
|
|
|
import re
|
2022-05-10 17:17:12 +00:00
|
|
|
from datetime import datetime
|
2021-01-31 13:38:40 +00:00
|
|
|
from io import BytesIO
|
2019-09-21 10:53:15 +00:00
|
|
|
from pathlib import Path
|
2019-08-16 13:28:11 +00:00
|
|
|
from unittest.mock import MagicMock, PropertyMock
|
2021-01-10 13:06:06 +00:00
|
|
|
from zipfile import ZipFile
|
2019-07-21 12:32:00 +00:00
|
|
|
|
2020-09-19 07:10:34 +00:00
|
|
|
import arrow
|
2019-07-21 12:32:00 +00:00
|
|
|
import pytest
|
|
|
|
|
2021-10-31 08:55:19 +00:00
|
|
|
from freqtrade.commands import (start_backtesting_show, start_convert_data, start_convert_trades,
|
2021-10-30 15:05:12 +00:00
|
|
|
start_create_userdir, start_download_data, start_hyperopt_list,
|
|
|
|
start_hyperopt_show, start_install_ui, start_list_data,
|
|
|
|
start_list_exchanges, start_list_markets, start_list_strategies,
|
|
|
|
start_list_timeframes, start_new_strategy, start_show_trades,
|
|
|
|
start_test_pairlist, start_trading, start_webserver)
|
2022-05-10 05:01:41 +00:00
|
|
|
from freqtrade.commands.db_commands import start_convert_db
|
2021-01-31 13:38:40 +00:00
|
|
|
from freqtrade.commands.deploy_commands import (clean_ui_subdir, download_and_install_ui,
|
2021-01-31 13:39:46 +00:00
|
|
|
get_ui_download_url, read_ui_version)
|
2020-01-26 12:55:48 +00:00
|
|
|
from freqtrade.configuration import setup_utils_configuration
|
2021-06-08 19:20:35 +00:00
|
|
|
from freqtrade.enums import RunMode
|
2019-12-30 14:02:17 +00:00
|
|
|
from freqtrade.exceptions import OperationalException
|
2022-05-09 17:59:15 +00:00
|
|
|
from freqtrade.persistence.models import init_db
|
2022-05-10 17:17:12 +00:00
|
|
|
from freqtrade.persistence.pairlock_middleware import PairLocks
|
2021-09-21 18:18:14 +00:00
|
|
|
from tests.conftest import (CURRENT_TEST_STRATEGY, create_mock_trades, get_args, log_has,
|
|
|
|
log_has_re, patch_exchange, patched_configuration_load_config_file)
|
2020-09-10 05:40:19 +00:00
|
|
|
from tests.conftest_trades import MOCK_TRADE_COUNT
|
2019-06-16 08:13:24 +00:00
|
|
|
|
|
|
|
|
2019-06-16 18:37:59 +00:00
|
|
|
def test_setup_utils_configuration():
|
2019-06-16 08:13:24 +00:00
|
|
|
args = [
|
2021-07-13 05:05:35 +00:00
|
|
|
'list-exchanges', '--config', 'config_examples/config_bittrex.example.json',
|
2019-06-16 08:13:24 +00:00
|
|
|
]
|
|
|
|
|
2019-06-16 18:37:59 +00:00
|
|
|
config = setup_utils_configuration(get_args(args), RunMode.OTHER)
|
2019-06-16 08:13:24 +00:00
|
|
|
assert "exchange" in config
|
2019-11-05 11:39:19 +00:00
|
|
|
assert config['dry_run'] is True
|
2019-06-16 08:13:24 +00:00
|
|
|
|
|
|
|
|
2020-05-08 09:44:24 +00:00
|
|
|
def test_start_trading_fail(mocker, caplog):
|
2019-11-16 08:56:16 +00:00
|
|
|
|
|
|
|
mocker.patch("freqtrade.worker.Worker.run", MagicMock(side_effect=OperationalException))
|
|
|
|
|
|
|
|
mocker.patch("freqtrade.worker.Worker.__init__", MagicMock(return_value=None))
|
|
|
|
|
|
|
|
exitmock = mocker.patch("freqtrade.worker.Worker.exit", MagicMock())
|
|
|
|
args = [
|
|
|
|
'trade',
|
2021-07-13 05:05:35 +00:00
|
|
|
'-c', 'config_examples/config_bittrex.example.json'
|
2019-11-16 08:56:16 +00:00
|
|
|
]
|
2020-05-08 09:44:24 +00:00
|
|
|
start_trading(get_args(args))
|
2019-11-16 08:56:16 +00:00
|
|
|
assert exitmock.call_count == 1
|
|
|
|
|
|
|
|
exitmock.reset_mock()
|
2020-05-08 09:44:24 +00:00
|
|
|
caplog.clear()
|
2019-11-16 08:56:16 +00:00
|
|
|
mocker.patch("freqtrade.worker.Worker.__init__", MagicMock(side_effect=OperationalException))
|
2020-05-08 09:44:24 +00:00
|
|
|
start_trading(get_args(args))
|
2019-11-16 08:56:16 +00:00
|
|
|
assert exitmock.call_count == 0
|
2020-05-08 09:44:24 +00:00
|
|
|
assert log_has('Fatal exception!', caplog)
|
2019-11-16 08:56:16 +00:00
|
|
|
|
|
|
|
|
2021-04-01 05:49:54 +00:00
|
|
|
def test_start_webserver(mocker, caplog):
|
|
|
|
|
|
|
|
api_server_mock = mocker.patch("freqtrade.rpc.api_server.ApiServer", )
|
|
|
|
|
|
|
|
args = [
|
|
|
|
'webserver',
|
2021-07-18 09:06:14 +00:00
|
|
|
'-c', 'config_examples/config_bittrex.example.json'
|
2021-04-01 05:49:54 +00:00
|
|
|
]
|
|
|
|
start_webserver(get_args(args))
|
|
|
|
assert api_server_mock.call_count == 1
|
|
|
|
|
|
|
|
|
2019-06-16 08:13:24 +00:00
|
|
|
def test_list_exchanges(capsys):
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"list-exchanges",
|
|
|
|
]
|
|
|
|
|
|
|
|
start_list_exchanges(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
2019-09-30 21:33:54 +00:00
|
|
|
assert re.match(r"Exchanges available for Freqtrade.*", captured.out)
|
2021-04-06 05:57:27 +00:00
|
|
|
assert re.search(r".*binance.*", captured.out)
|
|
|
|
assert re.search(r".*bittrex.*", captured.out)
|
2019-06-16 08:13:24 +00:00
|
|
|
|
|
|
|
# Test with --one-column
|
|
|
|
args = [
|
|
|
|
"list-exchanges",
|
|
|
|
"--one-column",
|
|
|
|
]
|
|
|
|
|
|
|
|
start_list_exchanges(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert re.search(r"^binance$", captured.out, re.MULTILINE)
|
|
|
|
assert re.search(r"^bittrex$", captured.out, re.MULTILINE)
|
2019-07-21 12:32:00 +00:00
|
|
|
|
2019-09-30 21:33:54 +00:00
|
|
|
# Test with --all
|
|
|
|
args = [
|
|
|
|
"list-exchanges",
|
|
|
|
"--all",
|
|
|
|
]
|
|
|
|
|
|
|
|
start_list_exchanges(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert re.match(r"All exchanges supported by the ccxt library.*", captured.out)
|
2021-04-06 05:57:27 +00:00
|
|
|
assert re.search(r".*binance.*", captured.out)
|
|
|
|
assert re.search(r".*bittrex.*", captured.out)
|
|
|
|
assert re.search(r".*bitmex.*", captured.out)
|
2019-09-30 21:33:54 +00:00
|
|
|
|
|
|
|
# Test with --one-column --all
|
|
|
|
args = [
|
|
|
|
"list-exchanges",
|
|
|
|
"--one-column",
|
|
|
|
"--all",
|
|
|
|
]
|
|
|
|
|
|
|
|
start_list_exchanges(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert re.search(r"^binance$", captured.out, re.MULTILINE)
|
|
|
|
assert re.search(r"^bittrex$", captured.out, re.MULTILINE)
|
|
|
|
assert re.search(r"^bitmex$", captured.out, re.MULTILINE)
|
|
|
|
|
2019-07-21 12:32:00 +00:00
|
|
|
|
2019-10-06 08:32:19 +00:00
|
|
|
def test_list_timeframes(mocker, capsys):
|
|
|
|
|
|
|
|
api_mock = MagicMock()
|
2019-10-06 12:33:23 +00:00
|
|
|
api_mock.timeframes = {'1m': 'oneMin',
|
|
|
|
'5m': 'fiveMin',
|
|
|
|
'30m': 'thirtyMin',
|
|
|
|
'1h': 'hour',
|
|
|
|
'1d': 'day',
|
2019-10-06 08:32:19 +00:00
|
|
|
}
|
2021-04-20 10:54:22 +00:00
|
|
|
patch_exchange(mocker, api_mock=api_mock, id='bittrex')
|
2019-10-03 23:01:44 +00:00
|
|
|
args = [
|
|
|
|
"list-timeframes",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match=r"This command requires a configured exchange.*"):
|
|
|
|
start_list_timeframes(pargs)
|
|
|
|
|
2021-07-13 05:05:35 +00:00
|
|
|
# Test with --config config_examples/config_bittrex.example.json
|
2019-10-03 23:01:44 +00:00
|
|
|
args = [
|
|
|
|
"list-timeframes",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-03 23:01:44 +00:00
|
|
|
]
|
|
|
|
start_list_timeframes(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
2019-10-23 05:06:02 +00:00
|
|
|
assert re.match("Timeframes available for the exchange `Bittrex`: "
|
2019-10-03 23:01:44 +00:00
|
|
|
"1m, 5m, 30m, 1h, 1d",
|
|
|
|
captured.out)
|
|
|
|
|
|
|
|
# Test with --exchange bittrex
|
|
|
|
args = [
|
|
|
|
"list-timeframes",
|
|
|
|
"--exchange", "bittrex",
|
|
|
|
]
|
|
|
|
start_list_timeframes(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
2019-10-23 05:06:02 +00:00
|
|
|
assert re.match("Timeframes available for the exchange `Bittrex`: "
|
2019-10-03 23:01:44 +00:00
|
|
|
"1m, 5m, 30m, 1h, 1d",
|
|
|
|
captured.out)
|
|
|
|
|
2019-10-06 08:32:19 +00:00
|
|
|
api_mock.timeframes = {'1m': '1m',
|
|
|
|
'5m': '5m',
|
|
|
|
'15m': '15m',
|
|
|
|
'30m': '30m',
|
|
|
|
'1h': '1h',
|
|
|
|
'6h': '6h',
|
|
|
|
'12h': '12h',
|
|
|
|
'1d': '1d',
|
|
|
|
'3d': '3d',
|
|
|
|
}
|
2019-10-23 05:06:02 +00:00
|
|
|
patch_exchange(mocker, api_mock=api_mock, id='binance')
|
2019-10-03 23:01:44 +00:00
|
|
|
# Test with --exchange binance
|
|
|
|
args = [
|
|
|
|
"list-timeframes",
|
|
|
|
"--exchange", "binance",
|
|
|
|
]
|
|
|
|
start_list_timeframes(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
2019-10-23 05:06:02 +00:00
|
|
|
assert re.match("Timeframes available for the exchange `Binance`: "
|
2019-10-06 08:32:19 +00:00
|
|
|
"1m, 5m, 15m, 30m, 1h, 6h, 12h, 1d, 3d",
|
2019-10-03 23:01:44 +00:00
|
|
|
captured.out)
|
|
|
|
|
|
|
|
# Test with --one-column
|
|
|
|
args = [
|
|
|
|
"list-timeframes",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-03 23:01:44 +00:00
|
|
|
"--one-column",
|
|
|
|
]
|
|
|
|
start_list_timeframes(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert re.search(r"^1m$", captured.out, re.MULTILINE)
|
|
|
|
assert re.search(r"^5m$", captured.out, re.MULTILINE)
|
|
|
|
assert re.search(r"^1h$", captured.out, re.MULTILINE)
|
|
|
|
assert re.search(r"^1d$", captured.out, re.MULTILINE)
|
|
|
|
|
|
|
|
# Test with --exchange binance --one-column
|
|
|
|
args = [
|
|
|
|
"list-timeframes",
|
|
|
|
"--exchange", "binance",
|
|
|
|
"--one-column",
|
|
|
|
]
|
|
|
|
start_list_timeframes(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert re.search(r"^1m$", captured.out, re.MULTILINE)
|
|
|
|
assert re.search(r"^5m$", captured.out, re.MULTILINE)
|
|
|
|
assert re.search(r"^1h$", captured.out, re.MULTILINE)
|
|
|
|
assert re.search(r"^1d$", captured.out, re.MULTILINE)
|
|
|
|
|
|
|
|
|
2021-09-29 07:15:05 +00:00
|
|
|
def test_list_markets(mocker, markets_static, capsys):
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
api_mock = MagicMock()
|
2021-09-29 07:15:05 +00:00
|
|
|
patch_exchange(mocker, api_mock=api_mock, id='bittrex', mock_markets=markets_static)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# Test with no --config
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
|
|
|
]
|
2019-10-20 19:43:00 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
2019-10-17 21:48:40 +00:00
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match=r"This command requires a configured exchange.*"):
|
2019-10-20 19:43:00 +00:00
|
|
|
start_list_markets(pargs, False)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
2021-07-13 05:05:35 +00:00
|
|
|
# Test with --config config_examples/config_bittrex.example.json
|
2019-10-17 21:48:40 +00:00
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), False)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2022-02-15 06:42:40 +00:00
|
|
|
assert ("Exchange Bittrex has 12 active markets: "
|
|
|
|
"ADA/USDT:USDT, BLK/BTC, ETH/BTC, ETH/USDT, ETH/USDT:USDT, LTC/BTC, "
|
|
|
|
"LTC/ETH, LTC/USD, NEO/BTC, TKN/BTC, XLTCUSDT, XRP/BTC.\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
2021-09-29 07:15:05 +00:00
|
|
|
patch_exchange(mocker, api_mock=api_mock, id="binance", mock_markets=markets_static)
|
2019-10-20 23:15:37 +00:00
|
|
|
# Test with --exchange
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
|
|
|
"--exchange", "binance"
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_list_markets(pargs, False)
|
|
|
|
captured = capsys.readouterr()
|
2022-02-15 06:42:40 +00:00
|
|
|
assert re.match("\nExchange Binance has 12 active markets:\n",
|
2019-10-20 23:15:37 +00:00
|
|
|
captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
2021-09-29 07:15:05 +00:00
|
|
|
patch_exchange(mocker, api_mock=api_mock, id="bittrex", mock_markets=markets_static)
|
2019-10-17 21:48:40 +00:00
|
|
|
# Test with --all: all markets
|
|
|
|
args = [
|
2019-10-18 11:25:43 +00:00
|
|
|
"list-markets", "--all",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), False)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2022-02-15 06:42:40 +00:00
|
|
|
assert ("Exchange Bittrex has 14 markets: "
|
|
|
|
"ADA/USDT:USDT, BLK/BTC, BTT/BTC, ETH/BTC, ETH/USDT, ETH/USDT:USDT, "
|
|
|
|
"LTC/BTC, LTC/ETH, LTC/USD, LTC/USDT, NEO/BTC, TKN/BTC, XLTCUSDT, XRP/BTC.\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# Test list-pairs subcommand: active pairs
|
|
|
|
args = [
|
|
|
|
"list-pairs",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), True)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2020-02-24 20:50:27 +00:00
|
|
|
assert ("Exchange Bittrex has 9 active pairs: "
|
|
|
|
"BLK/BTC, ETH/BTC, ETH/USDT, LTC/BTC, LTC/ETH, LTC/USD, NEO/BTC, TKN/BTC, XRP/BTC.\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# Test list-pairs subcommand with --all: all pairs
|
|
|
|
args = [
|
2019-10-18 11:25:43 +00:00
|
|
|
"list-pairs", "--all",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), True)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2020-02-24 20:50:27 +00:00
|
|
|
assert ("Exchange Bittrex has 11 pairs: "
|
|
|
|
"BLK/BTC, BTT/BTC, ETH/BTC, ETH/USDT, LTC/BTC, LTC/ETH, LTC/USD, LTC/USDT, NEO/BTC, "
|
2019-10-18 11:25:43 +00:00
|
|
|
"TKN/BTC, XRP/BTC.\n"
|
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# active markets, base=ETH, LTC
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--base", "ETH", "LTC",
|
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), False)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2022-02-15 06:42:40 +00:00
|
|
|
assert ("Exchange Bittrex has 7 active markets with ETH, LTC as base currencies: "
|
|
|
|
"ETH/BTC, ETH/USDT, ETH/USDT:USDT, LTC/BTC, LTC/ETH, LTC/USD, XLTCUSDT.\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# active markets, base=LTC
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--base", "LTC",
|
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), False)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2020-02-24 20:50:27 +00:00
|
|
|
assert ("Exchange Bittrex has 4 active markets with LTC as base currency: "
|
|
|
|
"LTC/BTC, LTC/ETH, LTC/USD, XLTCUSDT.\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# active markets, quote=USDT, USD
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--quote", "USDT", "USD",
|
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), False)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2022-02-15 06:42:40 +00:00
|
|
|
assert ("Exchange Bittrex has 5 active markets with USDT, USD as quote currencies: "
|
|
|
|
"ADA/USDT:USDT, ETH/USDT, ETH/USDT:USDT, LTC/USD, XLTCUSDT.\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# active markets, quote=USDT
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--quote", "USDT",
|
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), False)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2022-02-15 06:42:40 +00:00
|
|
|
assert ("Exchange Bittrex has 4 active markets with USDT as quote currency: "
|
|
|
|
"ADA/USDT:USDT, ETH/USDT, ETH/USDT:USDT, XLTCUSDT.\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# active markets, base=LTC, quote=USDT
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--base", "LTC", "--quote", "USDT",
|
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), False)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2019-10-26 11:24:26 +00:00
|
|
|
assert ("Exchange Bittrex has 1 active market with LTC as base currency and "
|
|
|
|
"with USDT as quote currency: XLTCUSDT.\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# active pairs, base=LTC, quote=USDT
|
|
|
|
args = [
|
|
|
|
"list-pairs",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-26 11:24:26 +00:00
|
|
|
"--base", "LTC", "--quote", "USD",
|
2019-10-18 11:25:43 +00:00
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), True)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2019-10-18 11:25:43 +00:00
|
|
|
assert ("Exchange Bittrex has 1 active pair with LTC as base currency and "
|
2019-10-26 11:24:26 +00:00
|
|
|
"with USD as quote currency: LTC/USD.\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# active markets, base=LTC, quote=USDT, NONEXISTENT
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--base", "LTC", "--quote", "USDT", "NONEXISTENT",
|
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), False)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2019-10-26 11:24:26 +00:00
|
|
|
assert ("Exchange Bittrex has 1 active market with LTC as base currency and "
|
|
|
|
"with USDT, NONEXISTENT as quote currencies: XLTCUSDT.\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
|
|
|
# active markets, base=LTC, quote=NONEXISTENT
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--base", "LTC", "--quote", "NONEXISTENT",
|
|
|
|
"--print-list",
|
2019-10-17 21:48:40 +00:00
|
|
|
]
|
2019-10-17 22:26:05 +00:00
|
|
|
start_list_markets(get_args(args), False)
|
2019-10-17 21:48:40 +00:00
|
|
|
captured = capsys.readouterr()
|
2019-10-18 11:25:43 +00:00
|
|
|
assert ("Exchange Bittrex has 0 active markets with LTC as base currency and "
|
|
|
|
"with NONEXISTENT as quote currency.\n"
|
|
|
|
in captured.out)
|
|
|
|
|
|
|
|
# Test tabular output
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
]
|
|
|
|
start_list_markets(get_args(args), False)
|
|
|
|
captured = capsys.readouterr()
|
2022-02-15 06:42:40 +00:00
|
|
|
assert ("Exchange Bittrex has 12 active markets:\n"
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
|
|
|
|
|
|
|
# Test tabular output, no markets found
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--base", "LTC", "--quote", "NONEXISTENT",
|
|
|
|
]
|
|
|
|
start_list_markets(get_args(args), False)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert ("Exchange Bittrex has 0 active markets with LTC as base currency and "
|
|
|
|
"with NONEXISTENT as quote currency.\n"
|
|
|
|
in captured.out)
|
|
|
|
|
|
|
|
# Test --print-json
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--print-json"
|
|
|
|
]
|
|
|
|
start_list_markets(get_args(args), False)
|
|
|
|
captured = capsys.readouterr()
|
2022-02-15 06:42:40 +00:00
|
|
|
assert ('["ADA/USDT:USDT","BLK/BTC","ETH/BTC","ETH/USDT","ETH/USDT:USDT",'
|
|
|
|
'"LTC/BTC","LTC/ETH","LTC/USD","NEO/BTC","TKN/BTC","XLTCUSDT","XRP/BTC"]'
|
2019-10-18 11:25:43 +00:00
|
|
|
in captured.out)
|
|
|
|
|
|
|
|
# Test --print-csv
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--print-csv"
|
|
|
|
]
|
|
|
|
start_list_markets(get_args(args), False)
|
|
|
|
captured = capsys.readouterr()
|
2021-11-01 08:46:35 +00:00
|
|
|
assert ("Id,Symbol,Base,Quote,Active,Spot,Margin,Future,Leverage" in captured.out)
|
|
|
|
assert ("blkbtc,BLK/BTC,BLK,BTC,True,Spot" in captured.out)
|
|
|
|
assert ("USD-LTC,LTC/USD,LTC,USD,True,Spot" in captured.out)
|
2019-10-18 11:25:43 +00:00
|
|
|
|
|
|
|
# Test --one-column
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2019-10-18 11:25:43 +00:00
|
|
|
"--one-column"
|
|
|
|
]
|
|
|
|
start_list_markets(get_args(args), False)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert re.search(r"^BLK/BTC$", captured.out, re.MULTILINE)
|
2019-10-26 11:24:26 +00:00
|
|
|
assert re.search(r"^LTC/USD$", captured.out, re.MULTILINE)
|
2019-10-17 21:48:40 +00:00
|
|
|
|
2020-10-29 06:54:42 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.markets', PropertyMock(side_effect=ValueError))
|
|
|
|
# Test --one-column
|
|
|
|
args = [
|
|
|
|
"list-markets",
|
2021-07-13 05:05:35 +00:00
|
|
|
'--config', 'config_examples/config_bittrex.example.json',
|
2020-10-29 06:54:42 +00:00
|
|
|
"--one-column"
|
|
|
|
]
|
|
|
|
with pytest.raises(OperationalException, match=r"Cannot get markets.*"):
|
|
|
|
start_list_markets(get_args(args), False)
|
|
|
|
|
2019-10-17 21:48:40 +00:00
|
|
|
|
2019-07-21 12:32:00 +00:00
|
|
|
def test_create_datadir_failed(caplog):
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"create-userdir",
|
|
|
|
]
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
start_create_userdir(get_args(args))
|
2019-08-18 13:09:44 +00:00
|
|
|
assert log_has("`create-userdir` requires --userdir to be set.", caplog)
|
2019-07-21 12:32:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_create_datadir(caplog, mocker):
|
2020-02-29 14:44:45 +00:00
|
|
|
|
2020-01-26 12:09:13 +00:00
|
|
|
cud = mocker.patch("freqtrade.commands.deploy_commands.create_userdata_dir", MagicMock())
|
|
|
|
csf = mocker.patch("freqtrade.commands.deploy_commands.copy_sample_files", MagicMock())
|
2019-07-21 12:32:00 +00:00
|
|
|
args = [
|
|
|
|
"create-userdir",
|
|
|
|
"--userdir",
|
|
|
|
"/temp/freqtrade/test"
|
|
|
|
]
|
|
|
|
start_create_userdir(get_args(args))
|
|
|
|
|
|
|
|
assert cud.call_count == 1
|
2019-11-01 12:41:25 +00:00
|
|
|
assert csf.call_count == 1
|
2019-08-21 17:35:27 +00:00
|
|
|
|
|
|
|
|
2019-11-12 12:31:07 +00:00
|
|
|
def test_start_new_strategy(mocker, caplog):
|
|
|
|
wt_mock = mocker.patch.object(Path, "write_text", MagicMock())
|
2019-11-16 13:47:44 +00:00
|
|
|
mocker.patch.object(Path, "exists", MagicMock(return_value=False))
|
|
|
|
|
2019-11-12 12:31:07 +00:00
|
|
|
args = [
|
|
|
|
"new-strategy",
|
|
|
|
"--strategy",
|
|
|
|
"CoolNewStrategy"
|
|
|
|
]
|
|
|
|
start_new_strategy(get_args(args))
|
|
|
|
|
|
|
|
assert wt_mock.call_count == 1
|
|
|
|
assert "CoolNewStrategy" in wt_mock.call_args_list[0][0][0]
|
|
|
|
assert log_has_re("Writing strategy to .*", caplog)
|
|
|
|
|
2020-10-29 06:44:03 +00:00
|
|
|
mocker.patch('freqtrade.commands.deploy_commands.setup_utils_configuration')
|
|
|
|
mocker.patch.object(Path, "exists", MagicMock(return_value=True))
|
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match=r".* already exists. Please choose another Strategy Name\."):
|
|
|
|
start_new_strategy(get_args(args))
|
|
|
|
|
2019-11-12 12:31:07 +00:00
|
|
|
|
2019-11-12 12:33:37 +00:00
|
|
|
def test_start_new_strategy_no_arg(mocker, caplog):
|
|
|
|
args = [
|
|
|
|
"new-strategy",
|
|
|
|
]
|
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match="`new-strategy` requires --strategy to be set."):
|
|
|
|
start_new_strategy(get_args(args))
|
|
|
|
|
|
|
|
|
2021-01-10 13:06:06 +00:00
|
|
|
def test_start_install_ui(mocker):
|
|
|
|
clean_mock = mocker.patch('freqtrade.commands.deploy_commands.clean_ui_subdir')
|
2021-01-31 13:43:16 +00:00
|
|
|
get_url_mock = mocker.patch('freqtrade.commands.deploy_commands.get_ui_download_url',
|
|
|
|
return_value=('https://example.com/whatever', '0.0.1'))
|
2021-01-10 13:06:06 +00:00
|
|
|
download_mock = mocker.patch('freqtrade.commands.deploy_commands.download_and_install_ui')
|
2021-01-31 13:39:46 +00:00
|
|
|
mocker.patch('freqtrade.commands.deploy_commands.read_ui_version', return_value=None)
|
2021-01-10 13:06:06 +00:00
|
|
|
args = [
|
|
|
|
"install-ui",
|
|
|
|
]
|
2021-01-16 09:15:27 +00:00
|
|
|
start_install_ui(get_args(args))
|
2021-01-10 13:06:06 +00:00
|
|
|
assert clean_mock.call_count == 1
|
2021-01-10 13:46:59 +00:00
|
|
|
assert get_url_mock.call_count == 1
|
2021-01-10 13:06:06 +00:00
|
|
|
assert download_mock.call_count == 1
|
|
|
|
|
2021-01-16 09:15:27 +00:00
|
|
|
clean_mock.reset_mock()
|
|
|
|
get_url_mock.reset_mock()
|
|
|
|
download_mock.reset_mock()
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"install-ui",
|
|
|
|
"--erase",
|
|
|
|
]
|
|
|
|
start_install_ui(get_args(args))
|
|
|
|
assert clean_mock.call_count == 1
|
2021-01-31 13:43:16 +00:00
|
|
|
assert get_url_mock.call_count == 1
|
2021-01-16 09:15:27 +00:00
|
|
|
assert download_mock.call_count == 0
|
|
|
|
|
2021-01-10 13:06:06 +00:00
|
|
|
|
|
|
|
def test_clean_ui_subdir(mocker, tmpdir, caplog):
|
|
|
|
mocker.patch("freqtrade.commands.deploy_commands.Path.is_dir",
|
|
|
|
side_effect=[True, True])
|
|
|
|
mocker.patch("freqtrade.commands.deploy_commands.Path.is_file",
|
|
|
|
side_effect=[False, True])
|
|
|
|
rd_mock = mocker.patch("freqtrade.commands.deploy_commands.Path.rmdir")
|
|
|
|
ul_mock = mocker.patch("freqtrade.commands.deploy_commands.Path.unlink")
|
|
|
|
|
|
|
|
mocker.patch("freqtrade.commands.deploy_commands.Path.glob",
|
|
|
|
return_value=[Path('test1'), Path('test2'), Path('.gitkeep')])
|
|
|
|
folder = Path(tmpdir) / "uitests"
|
|
|
|
clean_ui_subdir(folder)
|
|
|
|
assert log_has("Removing UI directory content.", caplog)
|
|
|
|
assert rd_mock.call_count == 1
|
|
|
|
assert ul_mock.call_count == 1
|
|
|
|
|
|
|
|
|
2021-01-10 13:52:51 +00:00
|
|
|
def test_download_and_install_ui(mocker, tmpdir):
|
2021-01-10 13:46:59 +00:00
|
|
|
# Create zipfile
|
2021-01-10 13:06:06 +00:00
|
|
|
requests_mock = MagicMock()
|
|
|
|
file_like_object = BytesIO()
|
|
|
|
with ZipFile(file_like_object, mode='w') as zipfile:
|
|
|
|
for file in ('test1.txt', 'hello/', 'test2.txt'):
|
|
|
|
zipfile.writestr(file, file)
|
|
|
|
file_like_object.seek(0)
|
|
|
|
requests_mock.content = file_like_object.read()
|
2021-01-10 13:46:59 +00:00
|
|
|
|
2021-01-10 13:06:06 +00:00
|
|
|
mocker.patch("freqtrade.commands.deploy_commands.requests.get", return_value=requests_mock)
|
2021-01-10 13:46:59 +00:00
|
|
|
|
2021-01-10 13:06:06 +00:00
|
|
|
mocker.patch("freqtrade.commands.deploy_commands.Path.is_dir",
|
|
|
|
side_effect=[True, False])
|
|
|
|
wb_mock = mocker.patch("freqtrade.commands.deploy_commands.Path.write_bytes")
|
2021-01-10 13:46:59 +00:00
|
|
|
|
2021-01-10 13:06:06 +00:00
|
|
|
folder = Path(tmpdir) / "uitests_dl"
|
2021-01-31 13:39:46 +00:00
|
|
|
folder.mkdir(exist_ok=True)
|
2021-01-31 14:37:57 +00:00
|
|
|
|
|
|
|
assert read_ui_version(folder) is None
|
|
|
|
|
2021-01-31 13:39:46 +00:00
|
|
|
download_and_install_ui(folder, 'http://whatever.xxx/download/file.zip', '22')
|
2021-01-10 13:06:06 +00:00
|
|
|
|
|
|
|
assert wb_mock.call_count == 2
|
|
|
|
|
2021-01-31 13:39:46 +00:00
|
|
|
assert read_ui_version(folder) == '22'
|
|
|
|
|
2021-01-10 13:06:06 +00:00
|
|
|
|
2021-01-10 13:52:51 +00:00
|
|
|
def test_get_ui_download_url(mocker):
|
|
|
|
response = MagicMock()
|
|
|
|
response.json = MagicMock(
|
2021-01-31 13:38:40 +00:00
|
|
|
side_effect=[[{'assets_url': 'http://whatever.json', 'name': '0.0.1'}],
|
2021-01-10 13:52:51 +00:00
|
|
|
[{'browser_download_url': 'http://download.zip'}]])
|
|
|
|
get_mock = mocker.patch("freqtrade.commands.deploy_commands.requests.get",
|
|
|
|
return_value=response)
|
2021-01-31 13:38:40 +00:00
|
|
|
x, last_version = get_ui_download_url()
|
2021-01-10 13:52:51 +00:00
|
|
|
assert get_mock.call_count == 2
|
2021-01-31 13:38:40 +00:00
|
|
|
assert last_version == '0.0.1'
|
2021-01-10 13:52:51 +00:00
|
|
|
assert x == 'http://download.zip'
|
|
|
|
|
|
|
|
|
2021-01-31 13:38:40 +00:00
|
|
|
def test_get_ui_download_url_direct(mocker):
|
|
|
|
response = MagicMock()
|
|
|
|
response.json = MagicMock(
|
2021-10-12 04:44:07 +00:00
|
|
|
return_value=[
|
|
|
|
{
|
|
|
|
'assets_url': 'http://whatever.json',
|
|
|
|
'name': '0.0.2',
|
|
|
|
'assets': [{'browser_download_url': 'http://download22.zip'}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'assets_url': 'http://whatever.json',
|
|
|
|
'name': '0.0.1',
|
|
|
|
'assets': [{'browser_download_url': 'http://download1.zip'}]
|
|
|
|
},
|
|
|
|
])
|
2021-01-31 13:38:40 +00:00
|
|
|
get_mock = mocker.patch("freqtrade.commands.deploy_commands.requests.get",
|
|
|
|
return_value=response)
|
|
|
|
x, last_version = get_ui_download_url()
|
|
|
|
assert get_mock.call_count == 1
|
2021-10-12 04:44:07 +00:00
|
|
|
assert last_version == '0.0.2'
|
|
|
|
assert x == 'http://download22.zip'
|
|
|
|
get_mock.reset_mock()
|
|
|
|
response.json.reset_mock()
|
|
|
|
|
|
|
|
x, last_version = get_ui_download_url('0.0.1')
|
2021-01-31 13:38:40 +00:00
|
|
|
assert last_version == '0.0.1'
|
2021-10-12 04:44:07 +00:00
|
|
|
assert x == 'http://download1.zip'
|
|
|
|
|
|
|
|
with pytest.raises(ValueError, match="UI-Version not found."):
|
|
|
|
x, last_version = get_ui_download_url('0.0.3')
|
2021-01-31 13:38:40 +00:00
|
|
|
|
|
|
|
|
2019-08-25 13:02:40 +00:00
|
|
|
def test_download_data_keyboardInterrupt(mocker, caplog, markets):
|
2020-01-26 12:17:26 +00:00
|
|
|
dl_mock = mocker.patch('freqtrade.commands.data_commands.refresh_backtest_ohlcv_data',
|
2019-08-25 13:02:40 +00:00
|
|
|
MagicMock(side_effect=KeyboardInterrupt))
|
2019-08-17 04:58:38 +00:00
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets)
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange", "binance",
|
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
|
|
|
]
|
2019-08-25 13:02:40 +00:00
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
start_download_data(get_args(args))
|
2019-08-17 04:58:38 +00:00
|
|
|
|
2019-08-25 13:02:40 +00:00
|
|
|
assert dl_mock.call_count == 1
|
2019-08-17 04:58:38 +00:00
|
|
|
|
|
|
|
|
2020-09-19 07:10:34 +00:00
|
|
|
def test_download_data_timerange(mocker, caplog, markets):
|
|
|
|
dl_mock = mocker.patch('freqtrade.commands.data_commands.refresh_backtest_ohlcv_data',
|
|
|
|
MagicMock(return_value=["ETH/BTC", "XRP/BTC"]))
|
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets)
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange", "binance",
|
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
|
|
|
"--days", "20",
|
|
|
|
"--timerange", "20200101-"
|
|
|
|
]
|
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match=r"--days and --timerange are mutually.*"):
|
|
|
|
start_download_data(get_args(args))
|
|
|
|
assert dl_mock.call_count == 0
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange", "binance",
|
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
|
|
|
"--days", "20",
|
|
|
|
]
|
|
|
|
start_download_data(get_args(args))
|
|
|
|
assert dl_mock.call_count == 1
|
|
|
|
# 20days ago
|
2021-03-13 19:14:36 +00:00
|
|
|
days_ago = arrow.get(arrow.now().shift(days=-20).date()).int_timestamp
|
2020-09-19 07:10:34 +00:00
|
|
|
assert dl_mock.call_args_list[0][1]['timerange'].startts == days_ago
|
|
|
|
|
|
|
|
dl_mock.reset_mock()
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange", "binance",
|
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
|
|
|
"--timerange", "20200101-"
|
|
|
|
]
|
|
|
|
start_download_data(get_args(args))
|
|
|
|
assert dl_mock.call_count == 1
|
|
|
|
|
2020-10-12 17:58:04 +00:00
|
|
|
assert dl_mock.call_args_list[0][1]['timerange'].startts == arrow.Arrow(
|
|
|
|
2020, 1, 1).int_timestamp
|
2020-09-19 07:10:34 +00:00
|
|
|
|
|
|
|
|
2019-08-16 13:28:11 +00:00
|
|
|
def test_download_data_no_markets(mocker, caplog):
|
2020-01-26 12:17:26 +00:00
|
|
|
dl_mock = mocker.patch('freqtrade.commands.data_commands.refresh_backtest_ohlcv_data',
|
2019-08-25 13:02:40 +00:00
|
|
|
MagicMock(return_value=["ETH/BTC", "XRP/BTC"]))
|
2019-10-23 05:06:02 +00:00
|
|
|
patch_exchange(mocker, id='binance')
|
2019-08-16 13:28:11 +00:00
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value={})
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange", "binance",
|
2019-08-17 04:58:38 +00:00
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
2019-08-25 13:02:40 +00:00
|
|
|
"--days", "20"
|
2019-08-16 13:28:11 +00:00
|
|
|
]
|
|
|
|
start_download_data(get_args(args))
|
2019-08-25 13:02:40 +00:00
|
|
|
assert dl_mock.call_args[1]['timerange'].starttype == "date"
|
2019-10-23 05:06:02 +00:00
|
|
|
assert log_has("Pairs [ETH/BTC,XRP/BTC] not available on exchange Binance.", caplog)
|
2019-09-21 09:24:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_download_data_no_exchange(mocker, caplog):
|
2020-01-26 12:17:26 +00:00
|
|
|
mocker.patch('freqtrade.commands.data_commands.refresh_backtest_ohlcv_data',
|
2019-09-21 09:24:51 +00:00
|
|
|
MagicMock(return_value=["ETH/BTC", "XRP/BTC"]))
|
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value={})
|
|
|
|
)
|
|
|
|
args = [
|
2019-09-21 10:53:15 +00:00
|
|
|
"download-data",
|
2019-12-03 14:10:27 +00:00
|
|
|
]
|
2019-09-24 09:07:12 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
2019-09-21 09:24:51 +00:00
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match=r"This command requires a configured exchange.*"):
|
2019-09-24 09:07:12 +00:00
|
|
|
start_download_data(pargs)
|
2019-09-21 10:53:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_download_data_no_pairs(mocker, caplog):
|
2019-09-24 09:07:12 +00:00
|
|
|
|
2019-09-21 10:53:15 +00:00
|
|
|
mocker.patch.object(Path, "exists", MagicMock(return_value=False))
|
|
|
|
|
2020-01-26 12:17:26 +00:00
|
|
|
mocker.patch('freqtrade.commands.data_commands.refresh_backtest_ohlcv_data',
|
2019-09-21 10:53:15 +00:00
|
|
|
MagicMock(return_value=["ETH/BTC", "XRP/BTC"]))
|
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value={})
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange",
|
|
|
|
"binance",
|
|
|
|
]
|
2019-09-24 09:07:12 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
2019-09-21 10:53:15 +00:00
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match=r"Downloading data requires a list of pairs\..*"):
|
2019-09-24 09:07:12 +00:00
|
|
|
start_download_data(pargs)
|
2019-10-08 18:31:14 +00:00
|
|
|
|
|
|
|
|
2021-10-17 14:09:56 +00:00
|
|
|
def test_download_data_all_pairs(mocker, markets):
|
|
|
|
|
|
|
|
mocker.patch.object(Path, "exists", MagicMock(return_value=False))
|
|
|
|
|
|
|
|
dl_mock = mocker.patch('freqtrade.commands.data_commands.refresh_backtest_ohlcv_data',
|
|
|
|
MagicMock(return_value=["ETH/BTC", "XRP/BTC"]))
|
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value=markets)
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange",
|
|
|
|
"binance",
|
|
|
|
"--pairs",
|
|
|
|
".*/USDT"
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_download_data(pargs)
|
|
|
|
expected = set(['ETH/USDT', 'XRP/USDT', 'NEO/USDT', 'TKN/USDT'])
|
|
|
|
assert set(dl_mock.call_args_list[0][1]['pairs']) == expected
|
|
|
|
assert dl_mock.call_count == 1
|
|
|
|
|
|
|
|
dl_mock.reset_mock()
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange",
|
|
|
|
"binance",
|
|
|
|
"--pairs",
|
|
|
|
".*/USDT",
|
|
|
|
"--include-inactive-pairs",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_download_data(pargs)
|
|
|
|
expected = set(['ETH/USDT', 'LTC/USDT', 'XRP/USDT', 'NEO/USDT', 'TKN/USDT'])
|
|
|
|
assert set(dl_mock.call_args_list[0][1]['pairs']) == expected
|
|
|
|
|
|
|
|
|
2019-10-08 18:31:14 +00:00
|
|
|
def test_download_data_trades(mocker, caplog):
|
2020-01-26 12:17:26 +00:00
|
|
|
dl_mock = mocker.patch('freqtrade.commands.data_commands.refresh_backtest_trades_data',
|
2019-10-08 18:31:14 +00:00
|
|
|
MagicMock(return_value=[]))
|
2020-01-26 12:17:26 +00:00
|
|
|
convert_mock = mocker.patch('freqtrade.commands.data_commands.convert_trades_to_ohlcv',
|
2019-10-08 18:31:14 +00:00
|
|
|
MagicMock(return_value=[]))
|
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value={})
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange", "kraken",
|
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
|
|
|
"--days", "20",
|
|
|
|
"--dl-trades"
|
|
|
|
]
|
2022-01-31 19:09:25 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_download_data(pargs)
|
2019-10-08 18:31:14 +00:00
|
|
|
assert dl_mock.call_args[1]['timerange'].starttype == "date"
|
|
|
|
assert dl_mock.call_count == 1
|
|
|
|
assert convert_mock.call_count == 1
|
2021-11-27 15:36:59 +00:00
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange", "kraken",
|
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
|
|
|
"--days", "20",
|
|
|
|
"--trading-mode", "futures",
|
|
|
|
"--dl-trades"
|
|
|
|
]
|
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match="Trade download not supported for futures."):
|
2022-04-07 09:08:17 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_download_data(pargs)
|
2019-12-03 14:10:27 +00:00
|
|
|
|
|
|
|
|
2022-05-14 07:10:38 +00:00
|
|
|
def test_download_data_data_invalid(mocker):
|
|
|
|
patch_exchange(mocker, id="kraken")
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value={})
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"download-data",
|
|
|
|
"--exchange", "kraken",
|
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
|
|
|
"--days", "20",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
with pytest.raises(OperationalException, match=r"Historic klines not available for .*"):
|
|
|
|
start_download_data(pargs)
|
|
|
|
|
|
|
|
|
2021-09-29 17:39:29 +00:00
|
|
|
def test_start_convert_trades(mocker, caplog):
|
|
|
|
convert_mock = mocker.patch('freqtrade.commands.data_commands.convert_trades_to_ohlcv',
|
|
|
|
MagicMock(return_value=[]))
|
|
|
|
patch_exchange(mocker)
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.exchange.Exchange.markets', PropertyMock(return_value={})
|
|
|
|
)
|
|
|
|
args = [
|
|
|
|
"trades-to-ohlcv",
|
|
|
|
"--exchange", "kraken",
|
|
|
|
"--pairs", "ETH/BTC", "XRP/BTC",
|
|
|
|
]
|
|
|
|
start_convert_trades(get_args(args))
|
|
|
|
assert convert_mock.call_count == 1
|
|
|
|
|
|
|
|
|
2022-04-23 08:44:11 +00:00
|
|
|
def test_start_list_strategies(capsys):
|
2019-12-24 14:35:38 +00:00
|
|
|
|
|
|
|
args = [
|
|
|
|
"list-strategies",
|
|
|
|
"--strategy-path",
|
2020-02-18 19:12:10 +00:00
|
|
|
str(Path(__file__).parent.parent / "strategy" / "strats"),
|
2019-12-24 14:35:38 +00:00
|
|
|
"-1"
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
# pargs['config'] = None
|
|
|
|
start_list_strategies(pargs)
|
|
|
|
captured = capsys.readouterr()
|
2022-04-25 05:09:08 +00:00
|
|
|
assert "StrategyTestV2" in captured.out
|
|
|
|
assert "strategy_test_v2.py" not in captured.out
|
2021-09-21 18:18:14 +00:00
|
|
|
assert CURRENT_TEST_STRATEGY in captured.out
|
2019-12-24 14:35:38 +00:00
|
|
|
|
|
|
|
# Test regular output
|
|
|
|
args = [
|
|
|
|
"list-strategies",
|
|
|
|
"--strategy-path",
|
2020-02-18 19:12:10 +00:00
|
|
|
str(Path(__file__).parent.parent / "strategy" / "strats"),
|
2020-10-29 06:54:42 +00:00
|
|
|
'--no-color',
|
2019-12-24 14:35:38 +00:00
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
# pargs['config'] = None
|
|
|
|
start_list_strategies(pargs)
|
|
|
|
captured = capsys.readouterr()
|
2022-04-25 05:09:08 +00:00
|
|
|
assert "StrategyTestV2" in captured.out
|
|
|
|
assert "strategy_test_v2.py" in captured.out
|
2021-09-21 18:18:14 +00:00
|
|
|
assert CURRENT_TEST_STRATEGY in captured.out
|
2019-12-24 14:35:38 +00:00
|
|
|
|
2021-09-11 15:11:02 +00:00
|
|
|
# Test color output
|
2020-02-02 16:13:17 +00:00
|
|
|
args = [
|
2021-09-11 15:11:02 +00:00
|
|
|
"list-strategies",
|
|
|
|
"--strategy-path",
|
|
|
|
str(Path(__file__).parent.parent / "strategy" / "strats"),
|
2020-02-02 16:13:17 +00:00
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
# pargs['config'] = None
|
2021-09-11 15:11:02 +00:00
|
|
|
start_list_strategies(pargs)
|
2020-02-02 16:13:17 +00:00
|
|
|
captured = capsys.readouterr()
|
2022-04-25 05:09:08 +00:00
|
|
|
assert "StrategyTestV2" in captured.out
|
|
|
|
assert "strategy_test_v2.py" in captured.out
|
2021-09-21 18:18:14 +00:00
|
|
|
assert CURRENT_TEST_STRATEGY in captured.out
|
2021-09-11 15:11:02 +00:00
|
|
|
assert "LOAD FAILED" in captured.out
|
2022-04-23 07:19:18 +00:00
|
|
|
# Recursive
|
|
|
|
assert "TestStrategyNoImplements" not in captured.out
|
|
|
|
|
|
|
|
# Test recursive
|
|
|
|
args = [
|
|
|
|
"list-strategies",
|
|
|
|
"--strategy-path",
|
|
|
|
str(Path(__file__).parent.parent / "strategy" / "strats"),
|
|
|
|
'--no-color',
|
|
|
|
'--recursive-strategy-search'
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
# pargs['config'] = None
|
|
|
|
start_list_strategies(pargs)
|
|
|
|
captured = capsys.readouterr()
|
2022-04-25 05:09:08 +00:00
|
|
|
assert "StrategyTestV2" in captured.out
|
|
|
|
assert "strategy_test_v2.py" in captured.out
|
2022-04-23 07:19:18 +00:00
|
|
|
assert "StrategyTestV2" in captured.out
|
|
|
|
assert "TestStrategyNoImplements" in captured.out
|
2022-04-23 08:44:11 +00:00
|
|
|
assert str(Path("broken_strats/broken_futures_strategies.py")) in captured.out
|
2020-02-02 16:13:17 +00:00
|
|
|
|
|
|
|
|
2020-01-25 12:38:13 +00:00
|
|
|
def test_start_test_pairlist(mocker, caplog, tickers, default_conf, capsys):
|
|
|
|
patch_exchange(mocker, mock_markets=True)
|
2019-12-03 14:10:27 +00:00
|
|
|
mocker.patch.multiple('freqtrade.exchange.Exchange',
|
|
|
|
exchange_has=MagicMock(return_value=True),
|
2020-01-25 12:38:13 +00:00
|
|
|
get_tickers=tickers,
|
2019-12-03 14:10:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
default_conf['pairlists'] = [
|
|
|
|
{
|
|
|
|
"method": "VolumePairList",
|
|
|
|
"number_assets": 5,
|
|
|
|
"sort_key": "quoteVolume",
|
|
|
|
},
|
|
|
|
{"method": "PrecisionFilter"},
|
|
|
|
{"method": "PriceFilter", "low_price_ratio": 0.02},
|
|
|
|
]
|
|
|
|
|
|
|
|
patched_configuration_load_config_file(mocker, default_conf)
|
|
|
|
args = [
|
|
|
|
'test-pairlist',
|
2021-07-13 05:05:35 +00:00
|
|
|
'-c', 'config_examples/config_bittrex.example.json'
|
2019-12-03 14:10:27 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
start_test_pairlist(get_args(args))
|
|
|
|
|
|
|
|
assert log_has_re(r"^Using resolved pairlist VolumePairList.*", caplog)
|
|
|
|
assert log_has_re(r"^Using resolved pairlist PrecisionFilter.*", caplog)
|
|
|
|
assert log_has_re(r"^Using resolved pairlist PriceFilter.*", caplog)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert re.match(r"Pairs for .*", captured.out)
|
|
|
|
assert re.match("['ETH/BTC', 'TKN/BTC', 'BLK/BTC', 'LTC/BTC', 'XRP/BTC']", captured.out)
|
2019-12-09 01:37:58 +00:00
|
|
|
|
2020-10-29 07:09:50 +00:00
|
|
|
args = [
|
|
|
|
'test-pairlist',
|
2021-07-13 05:05:35 +00:00
|
|
|
'-c', 'config_examples/config_bittrex.example.json',
|
2020-10-29 07:09:50 +00:00
|
|
|
'--one-column',
|
|
|
|
]
|
|
|
|
start_test_pairlist(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert re.match(r"ETH/BTC\nTKN/BTC\nBLK/BTC\nLTC/BTC\nXRP/BTC\n", captured.out)
|
|
|
|
|
|
|
|
args = [
|
|
|
|
'test-pairlist',
|
2021-07-13 05:05:35 +00:00
|
|
|
'-c', 'config_examples/config_bittrex.example.json',
|
2020-10-29 07:09:50 +00:00
|
|
|
'--print-json',
|
|
|
|
]
|
|
|
|
start_test_pairlist(get_args(args))
|
|
|
|
captured = capsys.readouterr()
|
2021-06-02 18:50:08 +00:00
|
|
|
try:
|
|
|
|
json_pairs = json.loads(captured.out)
|
|
|
|
assert 'ETH/BTC' in json_pairs
|
|
|
|
assert 'TKN/BTC' in json_pairs
|
|
|
|
assert 'BLK/BTC' in json_pairs
|
|
|
|
assert 'LTC/BTC' in json_pairs
|
|
|
|
assert 'XRP/BTC' in json_pairs
|
|
|
|
except json.decoder.JSONDecodeError:
|
|
|
|
pytest.fail(f'Expected well formed JSON, but failed to parse: {captured.out}')
|
2020-10-29 07:09:50 +00:00
|
|
|
|
2019-12-09 01:37:58 +00:00
|
|
|
|
2021-08-08 08:22:45 +00:00
|
|
|
def test_hyperopt_list(mocker, capsys, caplog, saved_hyperopt_results, tmpdir):
|
2021-05-30 05:24:03 +00:00
|
|
|
csv_file = Path(tmpdir) / "test.csv"
|
2021-08-08 08:22:45 +00:00
|
|
|
mocker.patch(
|
2021-08-10 07:48:26 +00:00
|
|
|
'freqtrade.optimize.hyperopt_tools.HyperoptTools._test_hyperopt_results_exist',
|
|
|
|
return_value=True
|
2021-09-20 02:24:22 +00:00
|
|
|
)
|
2021-08-10 07:48:26 +00:00
|
|
|
|
|
|
|
def fake_iterator(*args, **kwargs):
|
|
|
|
yield from [saved_hyperopt_results]
|
|
|
|
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.optimize.hyperopt_tools.HyperoptTools._read_results',
|
|
|
|
side_effect=fake_iterator
|
2021-08-08 08:22:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 1/12", " 2/12", " 3/12", " 4/12", " 5/12",
|
|
|
|
" 6/12", " 7/12", " 8/12", " 9/12", " 10/12",
|
|
|
|
" 11/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--best",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 1/12", " 5/12", " 10/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 2/12", " 3/12", " 4/12", " 6/12", " 7/12", " 8/12", " 9/12",
|
|
|
|
" 11/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--profitable",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 2/12", " 10/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 1/12", " 3/12", " 4/12", " 5/12", " 6/12", " 7/12", " 8/12", " 9/12",
|
|
|
|
" 11/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--profitable",
|
|
|
|
"--no-color",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 2/12", " 10/12", "Best result:", "Buy hyperspace params",
|
|
|
|
"Sell hyperspace params", "ROI table", "Stoploss"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 1/12", " 3/12", " 4/12", " 5/12", " 6/12", " 7/12", " 8/12", " 9/12",
|
|
|
|
" 11/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
"--min-trades", "20",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 3/12", " 6/12", " 7/12", " 9/12", " 11/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 1/12", " 2/12", " 4/12", " 5/12", " 8/12", " 10/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--profitable",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
"--max-trades", "20",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 2/12", " 10/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 1/12", " 3/12", " 4/12", " 5/12", " 6/12", " 7/12", " 8/12", " 9/12",
|
|
|
|
" 11/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--profitable",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
"--min-avg-profit", "0.11",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 2/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 1/12", " 3/12", " 4/12", " 5/12", " 6/12", " 7/12", " 8/12", " 9/12",
|
|
|
|
" 10/12", " 11/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
"--max-avg-profit", "0.10",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 1/12", " 3/12", " 5/12", " 6/12", " 7/12", " 8/12", " 9/12",
|
|
|
|
" 11/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 2/12", " 4/12", " 10/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
"--min-total-profit", "0.4",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 10/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 1/12", " 2/12", " 3/12", " 4/12", " 5/12", " 6/12", " 7/12", " 8/12",
|
|
|
|
" 9/12", " 11/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
"--max-total-profit", "0.4",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 1/12", " 2/12", " 3/12", " 5/12", " 6/12", " 7/12", " 8/12",
|
|
|
|
" 9/12", " 11/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 4/12", " 10/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
"--min-objective", "0.1",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 10/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 1/12", " 2/12", " 3/12", " 4/12", " 5/12", " 6/12", " 7/12", " 8/12",
|
|
|
|
" 9/12", " 11/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--no-details",
|
|
|
|
"--max-objective", "0.1",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 1/12", " 2/12", " 3/12", " 5/12", " 6/12", " 7/12", " 8/12",
|
|
|
|
" 9/12", " 11/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 4/12", " 10/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--profitable",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
"--min-avg-time", "2000",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 10/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 1/12", " 2/12", " 3/12", " 4/12", " 5/12", " 6/12", " 7/12",
|
|
|
|
" 8/12", " 9/12", " 11/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
"--max-avg-time", "1500",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert all(x in captured.out
|
|
|
|
for x in [" 2/12", " 6/12"])
|
|
|
|
assert all(x not in captured.out
|
|
|
|
for x in [" 1/12", " 3/12", " 4/12", " 5/12", " 7/12", " 8/12"
|
|
|
|
" 9/12", " 10/12", " 11/12", " 12/12"])
|
|
|
|
args = [
|
|
|
|
"hyperopt-list",
|
|
|
|
"--no-details",
|
|
|
|
"--no-color",
|
|
|
|
"--export-csv",
|
|
|
|
str(csv_file),
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_list(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
log_has("CSV file created: test_file.csv", caplog)
|
|
|
|
assert csv_file.is_file()
|
|
|
|
line = csv_file.read_text()
|
|
|
|
assert ('Best,1,2,-1.25%,-1.2222,-0.00125625,,-2.51,"3,930.0 m",0.43662' in line
|
|
|
|
or "Best,1,2,-1.25%,-1.2222,-0.00125625,,-2.51,2 days 17:30:00,0.43662" in line)
|
|
|
|
csv_file.unlink()
|
2019-12-09 01:37:58 +00:00
|
|
|
|
2020-03-05 18:58:01 +00:00
|
|
|
|
2021-05-02 18:06:47 +00:00
|
|
|
def test_hyperopt_show(mocker, capsys, saved_hyperopt_results):
|
2019-12-09 01:37:58 +00:00
|
|
|
mocker.patch(
|
2021-08-10 07:48:26 +00:00
|
|
|
'freqtrade.optimize.hyperopt_tools.HyperoptTools._test_hyperopt_results_exist',
|
|
|
|
return_value=True
|
|
|
|
)
|
|
|
|
|
|
|
|
def fake_iterator(*args, **kwargs):
|
|
|
|
yield from [saved_hyperopt_results]
|
|
|
|
|
|
|
|
mocker.patch(
|
|
|
|
'freqtrade.optimize.hyperopt_tools.HyperoptTools._read_results',
|
|
|
|
side_effect=fake_iterator
|
2019-12-09 01:37:58 +00:00
|
|
|
)
|
2021-06-30 18:21:33 +00:00
|
|
|
mocker.patch('freqtrade.commands.hyperopt_commands.show_backtest_result')
|
2019-12-09 01:37:58 +00:00
|
|
|
|
|
|
|
args = [
|
|
|
|
"hyperopt-show",
|
|
|
|
]
|
2019-12-09 09:49:04 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_show(pargs)
|
2019-12-09 01:37:58 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert " 12/12" in captured.out
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"hyperopt-show",
|
|
|
|
"--best"
|
|
|
|
]
|
2019-12-09 09:49:04 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_show(pargs)
|
2019-12-09 01:37:58 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert " 10/12" in captured.out
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"hyperopt-show",
|
|
|
|
"-n", "1"
|
|
|
|
]
|
2019-12-09 09:49:04 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_show(pargs)
|
2019-12-09 01:37:58 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert " 1/12" in captured.out
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"hyperopt-show",
|
|
|
|
"--best",
|
|
|
|
"-n", "2"
|
|
|
|
]
|
2019-12-09 09:49:04 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_show(pargs)
|
2019-12-09 01:37:58 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert " 5/12" in captured.out
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"hyperopt-show",
|
|
|
|
"--best",
|
|
|
|
"-n", "-1"
|
|
|
|
]
|
2019-12-09 09:49:04 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_hyperopt_show(pargs)
|
2019-12-09 01:37:58 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert " 10/12" in captured.out
|
2019-12-09 21:22:11 +00:00
|
|
|
|
|
|
|
args = [
|
|
|
|
"hyperopt-show",
|
|
|
|
"--best",
|
|
|
|
"-n", "-4"
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match="The index of the epoch to show should be greater than -4."):
|
|
|
|
start_hyperopt_show(pargs)
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"hyperopt-show",
|
|
|
|
"--best",
|
|
|
|
"-n", "4"
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
with pytest.raises(OperationalException,
|
|
|
|
match="The index of the epoch to show should be less than 4."):
|
|
|
|
start_hyperopt_show(pargs)
|
2019-12-28 09:37:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_convert_data(mocker, testdatadir):
|
2020-01-26 19:31:13 +00:00
|
|
|
ohlcv_mock = mocker.patch("freqtrade.commands.data_commands.convert_ohlcv_format")
|
|
|
|
trades_mock = mocker.patch("freqtrade.commands.data_commands.convert_trades_format")
|
2019-12-28 09:37:34 +00:00
|
|
|
args = [
|
|
|
|
"convert-data",
|
|
|
|
"--format-from",
|
|
|
|
"json",
|
|
|
|
"--format-to",
|
|
|
|
"jsongz",
|
|
|
|
"--datadir",
|
|
|
|
str(testdatadir),
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_convert_data(pargs, True)
|
|
|
|
assert trades_mock.call_count == 0
|
|
|
|
assert ohlcv_mock.call_count == 1
|
|
|
|
assert ohlcv_mock.call_args[1]['convert_from'] == 'json'
|
|
|
|
assert ohlcv_mock.call_args[1]['convert_to'] == 'jsongz'
|
|
|
|
assert ohlcv_mock.call_args[1]['erase'] is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_convert_data_trades(mocker, testdatadir):
|
2020-01-26 19:31:13 +00:00
|
|
|
ohlcv_mock = mocker.patch("freqtrade.commands.data_commands.convert_ohlcv_format")
|
|
|
|
trades_mock = mocker.patch("freqtrade.commands.data_commands.convert_trades_format")
|
2019-12-28 09:37:34 +00:00
|
|
|
args = [
|
|
|
|
"convert-trade-data",
|
|
|
|
"--format-from",
|
|
|
|
"jsongz",
|
|
|
|
"--format-to",
|
|
|
|
"json",
|
|
|
|
"--datadir",
|
|
|
|
str(testdatadir),
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_convert_data(pargs, False)
|
|
|
|
assert ohlcv_mock.call_count == 0
|
|
|
|
assert trades_mock.call_count == 1
|
|
|
|
assert trades_mock.call_args[1]['convert_from'] == 'jsongz'
|
|
|
|
assert trades_mock.call_args[1]['convert_to'] == 'json'
|
|
|
|
assert trades_mock.call_args[1]['erase'] is False
|
2020-05-02 09:44:18 +00:00
|
|
|
|
|
|
|
|
2020-07-12 08:01:37 +00:00
|
|
|
def test_start_list_data(testdatadir, capsys):
|
|
|
|
args = [
|
|
|
|
"list-data",
|
|
|
|
"--data-format-ohlcv",
|
|
|
|
"json",
|
|
|
|
"--datadir",
|
|
|
|
str(testdatadir),
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_list_data(pargs)
|
|
|
|
captured = capsys.readouterr()
|
2021-12-03 06:20:00 +00:00
|
|
|
assert "Found 17 pair / timeframe combinations." in captured.out
|
|
|
|
assert "\n| Pair | Timeframe | Type |\n" in captured.out
|
2021-12-08 13:35:15 +00:00
|
|
|
assert "\n| UNITTEST/BTC | 1m, 5m, 8m, 30m | spot |\n" in captured.out
|
2020-07-14 04:55:34 +00:00
|
|
|
|
|
|
|
args = [
|
|
|
|
"list-data",
|
|
|
|
"--data-format-ohlcv",
|
|
|
|
"json",
|
|
|
|
"--pairs", "XRP/ETH",
|
|
|
|
"--datadir",
|
|
|
|
str(testdatadir),
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_list_data(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert "Found 2 pair / timeframe combinations." in captured.out
|
2021-11-21 04:46:47 +00:00
|
|
|
assert "\n| Pair | Timeframe | Type |\n" in captured.out
|
2020-07-14 04:55:34 +00:00
|
|
|
assert "UNITTEST/BTC" not in captured.out
|
2021-12-08 13:35:15 +00:00
|
|
|
assert "\n| XRP/ETH | 1m, 5m | spot |\n" in captured.out
|
2020-07-12 08:01:37 +00:00
|
|
|
|
2021-12-03 06:20:00 +00:00
|
|
|
args = [
|
|
|
|
"list-data",
|
|
|
|
"--data-format-ohlcv",
|
|
|
|
"json",
|
|
|
|
"--trading-mode", "futures",
|
|
|
|
"--datadir",
|
|
|
|
str(testdatadir),
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_list_data(pargs)
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
|
2022-01-22 10:50:46 +00:00
|
|
|
assert "Found 5 pair / timeframe combinations." in captured.out
|
|
|
|
assert "\n| Pair | Timeframe | Type |\n" in captured.out
|
|
|
|
assert "\n| XRP/USDT | 1h | futures |\n" in captured.out
|
|
|
|
assert "\n| XRP/USDT | 1h, 8h | mark |\n" in captured.out
|
2021-12-03 06:20:00 +00:00
|
|
|
|
2020-07-12 08:01:37 +00:00
|
|
|
|
2020-05-02 09:44:18 +00:00
|
|
|
@pytest.mark.usefixtures("init_persistence")
|
|
|
|
def test_show_trades(mocker, fee, capsys, caplog):
|
2020-10-16 05:39:12 +00:00
|
|
|
mocker.patch("freqtrade.persistence.init_db")
|
2021-09-20 02:24:22 +00:00
|
|
|
create_mock_trades(fee, False)
|
2020-05-02 09:44:18 +00:00
|
|
|
args = [
|
|
|
|
"show-trades",
|
|
|
|
"--db-url",
|
|
|
|
"sqlite:///"
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_show_trades(pargs)
|
2020-09-10 05:40:19 +00:00
|
|
|
assert log_has(f"Printing {MOCK_TRADE_COUNT} Trades: ", caplog)
|
2020-05-02 09:44:18 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert "Trade(id=1" in captured.out
|
|
|
|
assert "Trade(id=2" in captured.out
|
|
|
|
assert "Trade(id=3" in captured.out
|
|
|
|
args = [
|
|
|
|
"show-trades",
|
|
|
|
"--db-url",
|
|
|
|
"sqlite:///",
|
|
|
|
"--print-json",
|
2020-05-03 13:32:09 +00:00
|
|
|
"--trade-ids", "1", "2"
|
2020-05-02 09:44:18 +00:00
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
start_show_trades(pargs)
|
|
|
|
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert log_has("Printing 2 Trades: ", caplog)
|
|
|
|
assert '"trade_id": 1' in captured.out
|
|
|
|
assert '"trade_id": 2' in captured.out
|
|
|
|
assert '"trade_id": 3' not in captured.out
|
2020-05-05 17:48:28 +00:00
|
|
|
args = [
|
|
|
|
"show-trades",
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
|
|
|
|
|
|
|
with pytest.raises(OperationalException, match=r"--db-url is required for this command."):
|
|
|
|
start_show_trades(pargs)
|
2021-10-30 15:05:12 +00:00
|
|
|
|
|
|
|
|
2021-10-31 08:55:19 +00:00
|
|
|
def test_backtesting_show(mocker, testdatadir, capsys):
|
2021-10-30 15:05:12 +00:00
|
|
|
sbr = mocker.patch('freqtrade.optimize.optimize_reports.show_backtest_results')
|
|
|
|
args = [
|
2021-10-31 08:55:19 +00:00
|
|
|
"backtesting-show",
|
2021-10-30 15:05:12 +00:00
|
|
|
"--export-filename",
|
2022-04-11 18:32:02 +00:00
|
|
|
f"{testdatadir / 'backtest_results/backtest-result_new.json'}",
|
2021-10-30 15:05:12 +00:00
|
|
|
"--show-pair-list"
|
|
|
|
]
|
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
2021-10-31 08:55:19 +00:00
|
|
|
start_backtesting_show(pargs)
|
2021-10-30 15:05:12 +00:00
|
|
|
assert sbr.call_count == 1
|
|
|
|
out, err = capsys.readouterr()
|
|
|
|
assert "Pairs for Strategy" in out
|
2022-05-09 17:59:15 +00:00
|
|
|
|
|
|
|
|
2022-05-10 05:01:41 +00:00
|
|
|
def test_start_convert_db(mocker, fee, tmpdir, caplog):
|
2022-05-09 17:59:15 +00:00
|
|
|
db_src_file = Path(f"{tmpdir}/db.sqlite")
|
|
|
|
db_from = f"sqlite:///{db_src_file}"
|
|
|
|
db_target_file = Path(f"{tmpdir}/db_target.sqlite")
|
|
|
|
db_to = f"sqlite:///{db_target_file}"
|
|
|
|
args = [
|
2022-05-10 05:01:41 +00:00
|
|
|
"convert-db",
|
2022-05-09 17:59:15 +00:00
|
|
|
"--db-url-from",
|
|
|
|
db_from,
|
|
|
|
"--db-url",
|
|
|
|
db_to,
|
|
|
|
]
|
|
|
|
|
|
|
|
assert not db_src_file.is_file()
|
|
|
|
init_db(db_from, False)
|
|
|
|
|
|
|
|
create_mock_trades(fee)
|
2022-05-10 17:17:12 +00:00
|
|
|
|
|
|
|
PairLocks.timeframe = '5m'
|
|
|
|
PairLocks.lock_pair('XRP/USDT', datetime.now(), 'Random reason 125', side='long')
|
2022-05-09 17:59:15 +00:00
|
|
|
assert db_src_file.is_file()
|
|
|
|
assert not db_target_file.is_file()
|
2022-05-10 17:17:12 +00:00
|
|
|
|
2022-05-09 17:59:15 +00:00
|
|
|
pargs = get_args(args)
|
|
|
|
pargs['config'] = None
|
2022-05-10 05:01:41 +00:00
|
|
|
start_convert_db(pargs)
|
2022-05-10 17:17:12 +00:00
|
|
|
|
2022-05-09 17:59:15 +00:00
|
|
|
assert db_target_file.is_file()
|