Skip to content

Commit

Permalink
Merge pull request freqtrade#6143 from samgermain/todos
Browse files Browse the repository at this point in the history
Todos
  • Loading branch information
xmatthias authored Dec 31, 2021
2 parents 4b79d43 + c06496e commit 6491727
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 23 deletions.
2 changes: 0 additions & 2 deletions docs/leverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ Regular trading mode (low risk)

### Leverage trading modes

# TODO-lev: include a resource to help calculate stoplosses that are above the liquidation price

With leverage, a trader borrows capital from the exchange. The capital must be repayed fully to the exchange(potentially with interest), and the trader keeps any profits, or pays any losses, from any trades made using the borrowed capital.

Because the capital must always be repayed, exchanges will **liquidate** a trade (forcefully sell the traders assets) made using borrowed capital when the total value of assets in a leverage account drops to a certain point(a point where the total value of losses is less than the value of the collateral that the trader actually owns in the leverage account), in order to ensure that the trader has enough capital to pay back the borrowed assets to the exchange. The exchange will also charge a **liquidation fee**, adding to the traders losses. For this reason, **DO NOT TRADE WITH LEVERAGE IF YOU DON'T KNOW EXACTLY WHAT YOUR DOING. LEVERAGE TRADING IS HIGH RISK, AND CAN RESULT IN THE VALUE OF YOUR ASSETS DROPPING TO 0 VERY QUICKLY, WITH NO CHANCE OF INCREASING IN VALUE AGAIN**
Expand Down
1 change: 0 additions & 1 deletion freqtrade/commands/hyperopt_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,3 @@ def start_hyperopt_show(args: Dict[str, Any]) -> None:

HyperoptTools.show_epoch_details(val, total_epochs, print_json, no_header,
header_str="Epoch details")
# TODO-lev: Hyperopt optimal leverage
1 change: 0 additions & 1 deletion freqtrade/exchange/binance.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ async def _async_get_historic_ohlcv(self, pair: str, timeframe: str,

def funding_fee_cutoff(self, open_date: datetime):
"""
# TODO-lev: Double check that gateio, ftx, and kraken don't also have this
:param open_date: The open date for a trade
:return: The cutoff open time for when a funding fee is charged
"""
Expand Down
1 change: 0 additions & 1 deletion freqtrade/freqtradebot.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ def __init__(self, config: Dict[str, Any]) -> None:
# so anything in the Freqtradebot instance should be ready (initialized), including
# the initial state of the bot.
# Keep this at the end of this initialization method.
# TODO-lev: Do I need to consider the rpc, pairlists or dataprovider?
self.rpc: RPCManager = RPCManager(self)

self.pairlists = PairListManager(self.exchange, self.config)
Expand Down
4 changes: 3 additions & 1 deletion freqtrade/persistence/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,9 @@ def __init__(self, **kwargs):
if self.isolated_liq:
self.set_isolated_liq(self.isolated_liq)
self.recalc_open_trade_value()
# TODO-lev: Throw exception if on margin and interest_rate is none
if self.trading_mode == TradingMode.MARGIN and self.interest_rate is None:
raise OperationalException(
f"{self.trading_mode.value} trading requires param interest_rate on trades")

def _set_stop_loss(self, stop_loss: float, percent: float):
"""
Expand Down
1 change: 0 additions & 1 deletion freqtrade/plugins/pairlistmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ def verify_whitelist(self, pairlist: List[str], logmethod,
:return: pairlist - whitelisted pairs
"""
try:
# TODO-lev: filter for pairlists that are able to trade at the desired leverage
whitelist = expand_pairlist(pairlist, self._exchange.get_markets().keys(), keep_invalid)
except ValueError as err:
logger.error(f"Pair whitelist contains an invalid Wildcard: {err}")
Expand Down
3 changes: 1 addition & 2 deletions freqtrade/plugins/protections/max_drawdown_protection.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ def _reason(self, drawdown: float) -> str:
"""
LockReason to use
"""
# TODO-lev: < for shorts?
return (f'{drawdown} > {self._max_allowed_drawdown} in {self.lookback_period_str}, '
return (f'{drawdown} passed {self._max_allowed_drawdown} in {self.lookback_period_str}, '
f'locking for {self.stop_duration_str}.')

def _max_drawdown(self, date_now: datetime) -> ProtectionReturn:
Expand Down
1 change: 0 additions & 1 deletion freqtrade/plugins/protections/stoploss_guard.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def short_desc(self) -> str:
def _reason(self) -> str:
"""
LockReason to use
# TODO-lev: check if min is the right word for shorts
"""
return (f'{self._trade_limit} stoplosses in {self._lookback_period} min, '
f'locking for {self._stop_duration} min.')
Expand Down
1 change: 0 additions & 1 deletion freqtrade/rpc/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ class RPCException(Exception):
raise RPCException('*Status:* `no active trade`')
"""
# TODO-lev: Add new configuration options introduced with leveraged/short trading

def __init__(self, message: str) -> None:
super().__init__(self)
Expand Down
1 change: 0 additions & 1 deletion freqtrade/rpc/telegram.py
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,6 @@ def _help(self, update: Update, context: CallbackContext) -> None:
" *table :* `will display trades in a table`\n"
" `pending buy orders are marked with an asterisk (*)`\n"
" `pending sell orders are marked with a double asterisk (**)`\n"
# TODO-lev: Update commands and help (?)
"*/buys <pair|none>:* `Shows the enter_tag performance`\n"
"*/sells <pair|none>:* `Shows the sell reason performance`\n"
"*/mix_tags <pair|none>:* `Shows combined buy tag + sell reason performance`\n"
Expand Down
6 changes: 3 additions & 3 deletions tests/exchange/test_exchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -1667,8 +1667,8 @@ async def mock_candle_hist(pair, timeframe, candle_type, since_ms):

@pytest.mark.asyncio
@pytest.mark.parametrize("exchange_name", EXCHANGES)
# TODO-lev @pytest.mark.parametrize('candle_type', ['mark', ''])
async def test__async_get_historic_ohlcv(default_conf, mocker, caplog, exchange_name):
@pytest.mark.parametrize('candle_type', [CandleType.MARK, CandleType.SPOT])
async def test__async_get_historic_ohlcv(default_conf, mocker, caplog, exchange_name, candle_type):
ohlcv = [
[
int((datetime.now(timezone.utc).timestamp() - 1000) * 1000),
Expand All @@ -1685,7 +1685,7 @@ async def test__async_get_historic_ohlcv(default_conf, mocker, caplog, exchange_

pair = 'ETH/USDT'
respair, restf, _, res = await exchange._async_get_historic_ohlcv(
pair, "5m", 1500000000000, candle_type=CandleType.SPOT, is_new_pair=False)
pair, "5m", 1500000000000, candle_type=candle_type, is_new_pair=False)
assert respair == pair
assert restf == '5m'
# Call with very old timestamp - causes tons of requests
Expand Down
2 changes: 0 additions & 2 deletions tests/exchange/test_kraken.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,6 @@ def test_get_balances_prod(default_conf, mocker):
ccxt_exceptionhandlers(mocker, default_conf, api_mock, "kraken",
"get_balances", "fetch_balance")

# TODO-lev: All these stoploss tests with shorts


@pytest.mark.parametrize('ordertype', ['market', 'limit'])
@pytest.mark.parametrize('side,adjustedprice', [
Expand Down
11 changes: 5 additions & 6 deletions tests/test_freqtradebot.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ def test_process_informative_pairs_added(default_conf_usdt, ticker_usdt, mocker)
inf_pairs = MagicMock(return_value=[
("BTC/ETH", '1m', CandleType.SPOT),
("ETH/USDT", "1h", CandleType.SPOT)
])
])
mocker.patch.multiple(
'freqtrade.strategy.interface.IStrategy',
get_exit_signal=MagicMock(return_value=(False, False)),
Expand All @@ -710,8 +710,8 @@ def test_process_informative_pairs_added(default_conf_usdt, ticker_usdt, mocker)
'spot',
# TODO-lev: Enable other modes
# 'margin', 'futures'
]
)
]
)
@pytest.mark.parametrize("is_short", [False, True])
def test_execute_entry(mocker, default_conf_usdt, fee, limit_order,
limit_order_open, is_short, trading_mode) -> None:
Expand Down Expand Up @@ -2090,9 +2090,8 @@ def test_handle_trade_roi(default_conf_usdt, ticker_usdt, limit_order_open, fee,
# we might just want to check if we are in a sell condition without
# executing
# if ROI is reached we must sell
# TODO-lev: Change the next line for shorts
caplog.clear()
patch_get_signal(freqtrade, enter_long=False, exit_long=True)
patch_get_signal(freqtrade, enter_long=False, exit_long=not is_short, exit_short=is_short)
assert freqtrade.handle_trade(trade)
assert log_has("ETH/USDT - Required profit reached. sell_type=SellType.ROI",
caplog)
Expand Down Expand Up @@ -4928,4 +4927,4 @@ def refresh_latest_ohlcv_mock(pairlist, **kwargs):
assert trade.funding_fees == pytest.approx(sum(
trade.amount *
mark_prices[trade.pair].iloc[0:2]['open'] * funding_rates[trade.pair].iloc[0:2]['open']
))
))

0 comments on commit 6491727

Please sign in to comment.