2018-11-09 19:51:15 +00:00
|
|
|
# pragma pylint: disable=missing-docstring, C0103, C0330
|
2018-11-07 23:22:46 +00:00
|
|
|
# pragma pylint: disable=protected-access, too-many-lines, invalid-name, too-many-arguments
|
|
|
|
|
2018-11-09 19:51:15 +00:00
|
|
|
import logging
|
2018-12-13 05:26:04 +00:00
|
|
|
import math
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
|
2018-10-03 12:23:10 +00:00
|
|
|
import arrow
|
|
|
|
import numpy as np
|
2018-12-13 05:26:04 +00:00
|
|
|
import pytest
|
|
|
|
from pandas import DataFrame, to_datetime
|
2018-10-05 15:07:20 +00:00
|
|
|
|
2019-05-23 17:48:22 +00:00
|
|
|
from freqtrade import OperationalException
|
2018-12-15 13:42:21 +00:00
|
|
|
from freqtrade.data.converter import parse_ticker_dataframe
|
2018-12-13 05:26:04 +00:00
|
|
|
from freqtrade.edge import Edge, PairInfo
|
|
|
|
from freqtrade.strategy.interface import SellType
|
2019-09-08 07:54:15 +00:00
|
|
|
from tests.conftest import get_patched_freqtradebot, log_has
|
|
|
|
from tests.optimize import (BTContainer, BTrade, _build_backtest_dataframe,
|
|
|
|
_get_frame_time_from_offset)
|
2018-10-02 14:07:33 +00:00
|
|
|
|
|
|
|
# Cases to be tested:
|
2018-10-25 15:24:33 +00:00
|
|
|
# 1) Open trade should be removed from the end
|
|
|
|
# 2) Two complete trades within dataframe (with sell hit for all)
|
|
|
|
# 3) Entered, sl 1%, candle drops 8% => Trade closed, 1% loss
|
|
|
|
# 4) Entered, sl 3%, candle drops 4%, recovers to 1% => Trade closed, 3% loss
|
2018-11-02 18:54:32 +00:00
|
|
|
# 5) Stoploss and sell are hit. should sell on stoploss
|
2018-10-03 08:37:36 +00:00
|
|
|
####################################################################
|
2018-10-02 14:07:33 +00:00
|
|
|
|
2018-10-03 12:23:10 +00:00
|
|
|
ticker_start_time = arrow.get(2018, 10, 3)
|
2018-10-25 14:59:05 +00:00
|
|
|
ticker_interval_in_minute = 60
|
|
|
|
_ohlc = {'date': 0, 'buy': 1, 'open': 2, 'high': 3, 'low': 4, 'close': 5, 'sell': 6, 'volume': 7}
|
2018-10-03 12:23:10 +00:00
|
|
|
|
2019-05-23 17:48:22 +00:00
|
|
|
# Helpers for this test file
|
2018-10-03 12:23:10 +00:00
|
|
|
|
2019-05-23 17:48:22 +00:00
|
|
|
|
|
|
|
def _validate_ohlc(buy_ohlc_sell_matrice):
|
|
|
|
for index, ohlc in enumerate(buy_ohlc_sell_matrice):
|
|
|
|
# if not high < open < low or not high < close < low
|
|
|
|
if not ohlc[3] >= ohlc[2] >= ohlc[4] or not ohlc[3] >= ohlc[5] >= ohlc[4]:
|
|
|
|
raise Exception('Line ' + str(index + 1) + ' of ohlc has invalid values!')
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def _build_dataframe(buy_ohlc_sell_matrice):
|
|
|
|
_validate_ohlc(buy_ohlc_sell_matrice)
|
|
|
|
tickers = []
|
|
|
|
for ohlc in buy_ohlc_sell_matrice:
|
|
|
|
ticker = {
|
|
|
|
'date': ticker_start_time.shift(
|
|
|
|
minutes=(
|
|
|
|
ohlc[0] *
|
|
|
|
ticker_interval_in_minute)).timestamp *
|
|
|
|
1000,
|
|
|
|
'buy': ohlc[1],
|
|
|
|
'open': ohlc[2],
|
|
|
|
'high': ohlc[3],
|
|
|
|
'low': ohlc[4],
|
|
|
|
'close': ohlc[5],
|
|
|
|
'sell': ohlc[6]}
|
|
|
|
tickers.append(ticker)
|
|
|
|
|
|
|
|
frame = DataFrame(tickers)
|
|
|
|
frame['date'] = to_datetime(frame['date'],
|
|
|
|
unit='ms',
|
|
|
|
utc=True,
|
|
|
|
infer_datetime_format=True)
|
|
|
|
|
|
|
|
return frame
|
|
|
|
|
|
|
|
|
|
|
|
def _time_on_candle(number):
|
|
|
|
return np.datetime64(ticker_start_time.shift(
|
|
|
|
minutes=(number * ticker_interval_in_minute)).timestamp * 1000, 'ms')
|
|
|
|
|
|
|
|
|
|
|
|
# End helper functions
|
2018-11-09 19:51:15 +00:00
|
|
|
# Open trade should be removed from the end
|
|
|
|
tc0 = BTContainer(data=[
|
|
|
|
# D O H L C V B S
|
|
|
|
[0, 5000, 5025, 4975, 4987, 6172, 1, 0],
|
|
|
|
[1, 5000, 5025, 4975, 4987, 6172, 0, 1]], # enter trade (signal on last candle)
|
2019-10-05 08:40:59 +00:00
|
|
|
stop_loss=-0.99, roi={"0": float('inf')}, profit_perc=0.00,
|
2018-11-09 19:51:15 +00:00
|
|
|
trades=[]
|
|
|
|
)
|
|
|
|
|
|
|
|
# Two complete trades within dataframe(with sell hit for all)
|
|
|
|
tc1 = BTContainer(data=[
|
|
|
|
# D O H L C V B S
|
|
|
|
[0, 5000, 5025, 4975, 4987, 6172, 1, 0],
|
|
|
|
[1, 5000, 5025, 4975, 4987, 6172, 0, 1], # enter trade (signal on last candle)
|
|
|
|
[2, 5000, 5025, 4975, 4987, 6172, 0, 0], # exit at open
|
|
|
|
[3, 5000, 5025, 4975, 4987, 6172, 1, 0], # no action
|
|
|
|
[4, 5000, 5025, 4975, 4987, 6172, 0, 0], # should enter the trade
|
|
|
|
[5, 5000, 5025, 4975, 4987, 6172, 0, 1], # no action
|
|
|
|
[6, 5000, 5025, 4975, 4987, 6172, 0, 0], # should sell
|
|
|
|
],
|
2019-10-05 08:40:59 +00:00
|
|
|
stop_loss=-0.99, roi={"0": float('inf')}, profit_perc=0.00,
|
2018-11-09 19:51:15 +00:00
|
|
|
trades=[BTrade(sell_reason=SellType.SELL_SIGNAL, open_tick=1, close_tick=2),
|
|
|
|
BTrade(sell_reason=SellType.SELL_SIGNAL, open_tick=4, close_tick=6)]
|
|
|
|
)
|
|
|
|
|
|
|
|
# 3) Entered, sl 1%, candle drops 8% => Trade closed, 1% loss
|
|
|
|
tc2 = BTContainer(data=[
|
|
|
|
# D O H L C V B S
|
|
|
|
[0, 5000, 5025, 4975, 4987, 6172, 1, 0],
|
|
|
|
[1, 5000, 5025, 4600, 4987, 6172, 0, 0], # enter trade, stoploss hit
|
|
|
|
[2, 5000, 5025, 4975, 4987, 6172, 0, 0],
|
|
|
|
],
|
2019-10-05 08:40:59 +00:00
|
|
|
stop_loss=-0.01, roi={"0": float('inf')}, profit_perc=-0.01,
|
2018-11-09 19:51:15 +00:00
|
|
|
trades=[BTrade(sell_reason=SellType.STOP_LOSS, open_tick=1, close_tick=1)]
|
|
|
|
)
|
|
|
|
|
|
|
|
# 4) Entered, sl 3 %, candle drops 4%, recovers to 1 % = > Trade closed, 3 % loss
|
|
|
|
tc3 = BTContainer(data=[
|
|
|
|
# D O H L C V B S
|
|
|
|
[0, 5000, 5025, 4975, 4987, 6172, 1, 0],
|
|
|
|
[1, 5000, 5025, 4800, 4987, 6172, 0, 0], # enter trade, stoploss hit
|
|
|
|
[2, 5000, 5025, 4975, 4987, 6172, 0, 0],
|
|
|
|
],
|
2019-10-05 08:40:59 +00:00
|
|
|
stop_loss=-0.03, roi={"0": float('inf')}, profit_perc=-0.03,
|
2018-11-09 19:51:15 +00:00
|
|
|
trades=[BTrade(sell_reason=SellType.STOP_LOSS, open_tick=1, close_tick=1)]
|
|
|
|
)
|
|
|
|
|
2018-11-10 16:20:11 +00:00
|
|
|
# 5) Stoploss and sell are hit. should sell on stoploss
|
|
|
|
tc4 = BTContainer(data=[
|
2018-11-09 19:51:15 +00:00
|
|
|
# D O H L C V B S
|
|
|
|
[0, 5000, 5025, 4975, 4987, 6172, 1, 0],
|
|
|
|
[1, 5000, 5025, 4800, 4987, 6172, 0, 1], # enter trade, stoploss hit, sell signal
|
|
|
|
[2, 5000, 5025, 4975, 4987, 6172, 0, 0],
|
|
|
|
],
|
2019-10-05 08:40:59 +00:00
|
|
|
stop_loss=-0.03, roi={"0": float('inf')}, profit_perc=-0.03,
|
2018-11-10 16:20:11 +00:00
|
|
|
trades=[BTrade(sell_reason=SellType.STOP_LOSS, open_tick=1, close_tick=1)]
|
2018-11-09 19:51:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
TESTS = [
|
|
|
|
tc0,
|
|
|
|
tc1,
|
|
|
|
tc2,
|
|
|
|
tc3,
|
|
|
|
tc4
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("data", TESTS)
|
|
|
|
def test_edge_results(edge_conf, mocker, caplog, data) -> None:
|
|
|
|
"""
|
|
|
|
run functional tests
|
|
|
|
"""
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
|
|
|
frame = _build_backtest_dataframe(data.data)
|
|
|
|
caplog.set_level(logging.DEBUG)
|
|
|
|
edge.fee = 0
|
|
|
|
|
|
|
|
trades = edge._find_trades_for_stoploss_range(frame, 'TEST/BTC', [data.stop_loss])
|
|
|
|
results = edge._fill_calculable_fields(DataFrame(trades)) if trades else DataFrame()
|
|
|
|
|
|
|
|
assert len(trades) == len(data.trades)
|
|
|
|
|
|
|
|
if not results.empty:
|
|
|
|
assert round(results["profit_percent"].sum(), 3) == round(data.profit_perc, 3)
|
|
|
|
|
|
|
|
for c, trade in enumerate(data.trades):
|
|
|
|
res = results.iloc[c]
|
|
|
|
assert res.exit_type == trade.sell_reason
|
2019-03-23 14:24:11 +00:00
|
|
|
assert arrow.get(res.open_time) == _get_frame_time_from_offset(trade.open_tick)
|
|
|
|
assert arrow.get(res.close_time) == _get_frame_time_from_offset(trade.close_tick)
|
2018-11-09 19:51:15 +00:00
|
|
|
|
|
|
|
|
2018-11-27 13:02:34 +00:00
|
|
|
def test_adjust(mocker, edge_conf):
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
2018-10-02 14:07:33 +00:00
|
|
|
mocker.patch('freqtrade.edge.Edge._cached_pairs', mocker.PropertyMock(
|
2018-11-04 17:11:58 +00:00
|
|
|
return_value={
|
2018-11-21 23:04:20 +00:00
|
|
|
'E/F': PairInfo(-0.01, 0.66, 3.71, 0.50, 1.71, 10, 60),
|
|
|
|
'C/D': PairInfo(-0.01, 0.66, 3.71, 0.50, 1.71, 10, 60),
|
|
|
|
'N/O': PairInfo(-0.01, 0.66, 3.71, 0.50, 1.71, 10, 60)
|
2018-11-04 17:11:58 +00:00
|
|
|
}
|
2018-10-02 14:07:33 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
pairs = ['A/B', 'C/D', 'E/F', 'G/H']
|
2018-11-07 18:24:53 +00:00
|
|
|
assert(edge.adjust(pairs) == ['E/F', 'C/D'])
|
2018-10-02 16:05:24 +00:00
|
|
|
|
|
|
|
|
2018-11-27 13:02:34 +00:00
|
|
|
def test_stoploss(mocker, edge_conf):
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
2018-10-04 16:51:59 +00:00
|
|
|
mocker.patch('freqtrade.edge.Edge._cached_pairs', mocker.PropertyMock(
|
2018-11-04 17:11:58 +00:00
|
|
|
return_value={
|
2018-11-21 23:04:20 +00:00
|
|
|
'E/F': PairInfo(-0.01, 0.66, 3.71, 0.50, 1.71, 10, 60),
|
|
|
|
'C/D': PairInfo(-0.01, 0.66, 3.71, 0.50, 1.71, 10, 60),
|
|
|
|
'N/O': PairInfo(-0.01, 0.66, 3.71, 0.50, 1.71, 10, 60)
|
2018-11-04 17:11:58 +00:00
|
|
|
}
|
2018-10-04 16:51:59 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
assert edge.stoploss('E/F') == -0.01
|
|
|
|
|
|
|
|
|
2018-11-30 16:59:51 +00:00
|
|
|
def test_nonexisting_stoploss(mocker, edge_conf):
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
2018-11-29 17:31:08 +00:00
|
|
|
mocker.patch('freqtrade.edge.Edge._cached_pairs', mocker.PropertyMock(
|
|
|
|
return_value={
|
|
|
|
'E/F': PairInfo(-0.01, 0.66, 3.71, 0.50, 1.71, 10, 60),
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
assert edge.stoploss('N/O') == -0.1
|
|
|
|
|
2018-11-29 17:45:37 +00:00
|
|
|
|
2018-11-30 16:59:51 +00:00
|
|
|
def test_stake_amount(mocker, edge_conf):
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
|
|
|
mocker.patch('freqtrade.edge.Edge._cached_pairs', mocker.PropertyMock(
|
|
|
|
return_value={
|
|
|
|
'E/F': PairInfo(-0.02, 0.66, 3.71, 0.50, 1.71, 10, 60),
|
|
|
|
}
|
|
|
|
))
|
|
|
|
free = 100
|
|
|
|
total = 100
|
2018-12-04 16:13:46 +00:00
|
|
|
in_trade = 25
|
|
|
|
assert edge.stake_amount('E/F', free, total, in_trade) == 31.25
|
2018-11-30 16:59:51 +00:00
|
|
|
|
|
|
|
free = 20
|
|
|
|
total = 100
|
2018-12-04 16:13:46 +00:00
|
|
|
in_trade = 25
|
|
|
|
assert edge.stake_amount('E/F', free, total, in_trade) == 20
|
2018-11-30 16:59:51 +00:00
|
|
|
|
|
|
|
free = 0
|
|
|
|
total = 100
|
2018-12-04 16:13:46 +00:00
|
|
|
in_trade = 25
|
|
|
|
assert edge.stake_amount('E/F', free, total, in_trade) == 0
|
2018-11-30 16:59:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_nonexisting_stake_amount(mocker, edge_conf):
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
|
|
|
mocker.patch('freqtrade.edge.Edge._cached_pairs', mocker.PropertyMock(
|
|
|
|
return_value={
|
2018-12-01 10:56:16 +00:00
|
|
|
'E/F': PairInfo(-0.11, 0.66, 3.71, 0.50, 1.71, 10, 60),
|
2018-11-30 16:59:51 +00:00
|
|
|
}
|
|
|
|
))
|
2018-12-04 16:13:46 +00:00
|
|
|
# should use strategy stoploss
|
|
|
|
assert edge.stake_amount('N/O', 1, 2, 1) == 0.15
|
2018-11-30 16:59:51 +00:00
|
|
|
|
|
|
|
|
2018-11-09 19:51:15 +00:00
|
|
|
def test_edge_heartbeat_calculate(mocker, edge_conf):
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
|
|
|
heartbeat = edge_conf['edge']['process_throttle_secs']
|
2018-10-05 15:07:20 +00:00
|
|
|
|
|
|
|
# should not recalculate if heartbeat not reached
|
2018-11-04 17:57:57 +00:00
|
|
|
edge._last_updated = arrow.utcnow().timestamp - heartbeat + 1
|
2018-10-05 15:07:20 +00:00
|
|
|
|
2018-10-05 15:25:56 +00:00
|
|
|
assert edge.calculate() is False
|
2018-10-05 15:07:20 +00:00
|
|
|
|
|
|
|
|
2019-11-02 19:19:13 +00:00
|
|
|
def mocked_load_data(datadir, pairs=[], timeframe='0m', refresh_pairs=False,
|
2019-10-27 09:18:58 +00:00
|
|
|
timerange=None, exchange=None, *args, **kwargs):
|
2018-10-05 15:07:20 +00:00
|
|
|
hz = 0.1
|
|
|
|
base = 0.001
|
|
|
|
|
2019-06-15 11:47:20 +00:00
|
|
|
NEOBTC = [
|
2018-10-05 15:07:20 +00:00
|
|
|
[
|
|
|
|
ticker_start_time.shift(minutes=(x * ticker_interval_in_minute)).timestamp * 1000,
|
2018-10-25 14:59:05 +00:00
|
|
|
math.sin(x * hz) / 1000 + base,
|
2018-10-05 15:07:20 +00:00
|
|
|
math.sin(x * hz) / 1000 + base + 0.0001,
|
|
|
|
math.sin(x * hz) / 1000 + base - 0.0001,
|
|
|
|
math.sin(x * hz) / 1000 + base,
|
|
|
|
123.45
|
|
|
|
] for x in range(0, 500)]
|
|
|
|
|
|
|
|
hz = 0.2
|
|
|
|
base = 0.002
|
|
|
|
LTCBTC = [
|
|
|
|
[
|
|
|
|
ticker_start_time.shift(minutes=(x * ticker_interval_in_minute)).timestamp * 1000,
|
2018-10-25 14:59:05 +00:00
|
|
|
math.sin(x * hz) / 1000 + base,
|
2018-10-05 15:07:20 +00:00
|
|
|
math.sin(x * hz) / 1000 + base + 0.0001,
|
|
|
|
math.sin(x * hz) / 1000 + base - 0.0001,
|
|
|
|
math.sin(x * hz) / 1000 + base,
|
|
|
|
123.45
|
|
|
|
] for x in range(0, 500)]
|
|
|
|
|
2019-06-15 11:47:20 +00:00
|
|
|
pairdata = {'NEO/BTC': parse_ticker_dataframe(NEOBTC, '1h', pair="NEO/BTC", fill_missing=True),
|
|
|
|
'LTC/BTC': parse_ticker_dataframe(LTCBTC, '1h', pair="LTC/BTC", fill_missing=True)}
|
2018-10-05 15:07:20 +00:00
|
|
|
return pairdata
|
|
|
|
|
|
|
|
|
2018-11-27 13:02:34 +00:00
|
|
|
def test_edge_process_downloaded_data(mocker, edge_conf):
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
2018-10-05 15:07:20 +00:00
|
|
|
mocker.patch('freqtrade.exchange.Exchange.get_fee', MagicMock(return_value=0.001))
|
2018-12-13 05:35:28 +00:00
|
|
|
mocker.patch('freqtrade.data.history.load_data', mocked_load_data)
|
2018-11-27 13:02:34 +00:00
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
2018-10-05 15:07:20 +00:00
|
|
|
|
|
|
|
assert edge.calculate()
|
|
|
|
assert len(edge._cached_pairs) == 2
|
|
|
|
assert edge._last_updated <= arrow.utcnow().timestamp + 2
|
|
|
|
|
|
|
|
|
2019-05-23 17:48:22 +00:00
|
|
|
def test_edge_process_no_data(mocker, edge_conf, caplog):
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
|
|
|
mocker.patch('freqtrade.exchange.Exchange.get_fee', MagicMock(return_value=0.001))
|
|
|
|
mocker.patch('freqtrade.data.history.load_data', MagicMock(return_value={}))
|
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
|
|
|
|
|
|
|
assert not edge.calculate()
|
|
|
|
assert len(edge._cached_pairs) == 0
|
2019-08-11 18:16:52 +00:00
|
|
|
assert log_has("No data found. Edge is stopped ...", caplog)
|
2019-05-23 17:48:22 +00:00
|
|
|
assert edge._last_updated == 0
|
|
|
|
|
|
|
|
|
|
|
|
def test_edge_process_no_trades(mocker, edge_conf, caplog):
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
|
|
|
mocker.patch('freqtrade.exchange.Exchange.get_fee', MagicMock(return_value=0.001))
|
|
|
|
mocker.patch('freqtrade.data.history.load_data', mocked_load_data)
|
|
|
|
# Return empty
|
|
|
|
mocker.patch('freqtrade.edge.Edge._find_trades_for_stoploss_range', MagicMock(return_value=[]))
|
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
|
|
|
|
|
|
|
assert not edge.calculate()
|
|
|
|
assert len(edge._cached_pairs) == 0
|
2019-08-11 18:16:52 +00:00
|
|
|
assert log_has("No trades found.", caplog)
|
2019-05-23 17:48:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_edge_init_error(mocker, edge_conf,):
|
|
|
|
edge_conf['stake_amount'] = 0.5
|
|
|
|
mocker.patch('freqtrade.exchange.Exchange.get_fee', MagicMock(return_value=0.001))
|
|
|
|
with pytest.raises(OperationalException, match='Edge works only with unlimited stake amount'):
|
|
|
|
get_patched_freqtradebot(mocker, edge_conf)
|
|
|
|
|
|
|
|
|
2018-11-09 19:51:15 +00:00
|
|
|
def test_process_expectancy(mocker, edge_conf):
|
|
|
|
edge_conf['edge']['min_trade_number'] = 2
|
|
|
|
freqtrade = get_patched_freqtradebot(mocker, edge_conf)
|
2018-10-03 12:23:10 +00:00
|
|
|
|
|
|
|
def get_fee():
|
|
|
|
return 0.001
|
|
|
|
|
2018-11-07 23:22:46 +00:00
|
|
|
freqtrade.exchange.get_fee = get_fee
|
2018-11-09 19:51:15 +00:00
|
|
|
edge = Edge(edge_conf, freqtrade.exchange, freqtrade.strategy)
|
2018-10-03 12:23:10 +00:00
|
|
|
|
|
|
|
trades = [
|
|
|
|
{'pair': 'TEST/BTC',
|
|
|
|
'stoploss': -0.9,
|
|
|
|
'profit_percent': '',
|
|
|
|
'profit_abs': '',
|
|
|
|
'open_time': np.datetime64('2018-10-03T00:05:00.000000000'),
|
|
|
|
'close_time': np.datetime64('2018-10-03T00:10:00.000000000'),
|
|
|
|
'open_index': 1,
|
|
|
|
'close_index': 1,
|
|
|
|
'trade_duration': '',
|
|
|
|
'open_rate': 17,
|
|
|
|
'close_rate': 17,
|
2018-11-02 17:10:03 +00:00
|
|
|
'exit_type': 'sell_signal'},
|
2018-10-03 12:23:10 +00:00
|
|
|
|
|
|
|
{'pair': 'TEST/BTC',
|
|
|
|
'stoploss': -0.9,
|
|
|
|
'profit_percent': '',
|
|
|
|
'profit_abs': '',
|
|
|
|
'open_time': np.datetime64('2018-10-03T00:20:00.000000000'),
|
|
|
|
'close_time': np.datetime64('2018-10-03T00:25:00.000000000'),
|
|
|
|
'open_index': 4,
|
|
|
|
'close_index': 4,
|
|
|
|
'trade_duration': '',
|
|
|
|
'open_rate': 20,
|
|
|
|
'close_rate': 20,
|
|
|
|
'exit_type': 'sell_signal'},
|
|
|
|
|
|
|
|
{'pair': 'TEST/BTC',
|
|
|
|
'stoploss': -0.9,
|
|
|
|
'profit_percent': '',
|
|
|
|
'profit_abs': '',
|
|
|
|
'open_time': np.datetime64('2018-10-03T00:30:00.000000000'),
|
|
|
|
'close_time': np.datetime64('2018-10-03T00:40:00.000000000'),
|
|
|
|
'open_index': 6,
|
|
|
|
'close_index': 7,
|
|
|
|
'trade_duration': '',
|
|
|
|
'open_rate': 26,
|
|
|
|
'close_rate': 34,
|
|
|
|
'exit_type': 'sell_signal'}
|
|
|
|
]
|
|
|
|
|
|
|
|
trades_df = DataFrame(trades)
|
|
|
|
trades_df = edge._fill_calculable_fields(trades_df)
|
|
|
|
final = edge._process_expectancy(trades_df)
|
|
|
|
assert len(final) == 1
|
2018-10-03 08:37:36 +00:00
|
|
|
|
2018-11-04 17:11:58 +00:00
|
|
|
assert 'TEST/BTC' in final
|
|
|
|
assert final['TEST/BTC'].stoploss == -0.9
|
|
|
|
assert round(final['TEST/BTC'].winrate, 10) == 0.3333333333
|
|
|
|
assert round(final['TEST/BTC'].risk_reward_ratio, 10) == 306.5384615384
|
|
|
|
assert round(final['TEST/BTC'].required_risk_reward, 10) == 2.0
|
|
|
|
assert round(final['TEST/BTC'].expectancy, 10) == 101.5128205128
|
2019-05-23 17:48:22 +00:00
|
|
|
|
|
|
|
# Pop last item so no trade is profitable
|
|
|
|
trades.pop()
|
|
|
|
trades_df = DataFrame(trades)
|
|
|
|
trades_df = edge._fill_calculable_fields(trades_df)
|
|
|
|
final = edge._process_expectancy(trades_df)
|
|
|
|
assert len(final) == 0
|
|
|
|
assert isinstance(final, dict)
|