2019-02-24 18:30:05 +00:00
|
|
|
""" Binance exchange subclass """
|
2021-09-19 23:02:09 +00:00
|
|
|
import json
|
2019-02-24 18:30:05 +00:00
|
|
|
import logging
|
2021-11-01 07:09:11 +00:00
|
|
|
from datetime import datetime
|
2021-09-19 23:02:09 +00:00
|
|
|
from pathlib import Path
|
2021-11-23 09:19:59 +00:00
|
|
|
from typing import Dict, List, Optional, Tuple
|
2019-02-24 18:30:05 +00:00
|
|
|
|
2021-09-16 04:28:10 +00:00
|
|
|
import arrow
|
2022-03-04 05:50:42 +00:00
|
|
|
import ccxt
|
2021-09-09 07:19:24 +00:00
|
|
|
|
2022-02-01 18:53:38 +00:00
|
|
|
from freqtrade.enums import CandleType, MarginMode, TradingMode
|
2022-03-04 05:50:42 +00:00
|
|
|
from freqtrade.exceptions import DDosProtection, OperationalException, TemporaryError
|
2021-09-08 20:50:30 +00:00
|
|
|
from freqtrade.exchange import Exchange
|
2022-03-04 05:50:42 +00:00
|
|
|
from freqtrade.exchange.common import retrier
|
2022-03-18 06:08:16 +00:00
|
|
|
from freqtrade.misc import deep_merge_dicts
|
2021-09-09 07:19:24 +00:00
|
|
|
|
2020-09-28 17:39:41 +00:00
|
|
|
|
2019-02-24 18:30:05 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class Binance(Exchange):
|
|
|
|
|
2019-02-24 19:01:20 +00:00
|
|
|
_ft_has: Dict = {
|
2019-02-24 18:30:05 +00:00
|
|
|
"stoploss_on_exchange": True,
|
2022-02-02 19:40:40 +00:00
|
|
|
"stoploss_order_types": {"limit": "stop_loss_limit"},
|
2019-03-25 23:49:39 +00:00
|
|
|
"order_time_in_force": ['gtc', 'fok', 'ioc'],
|
2021-09-16 04:28:10 +00:00
|
|
|
"time_in_force_parameter": "timeInForce",
|
2020-12-20 10:44:50 +00:00
|
|
|
"ohlcv_candle_limit": 1000,
|
2019-08-14 17:22:52 +00:00
|
|
|
"trades_pagination": "id",
|
|
|
|
"trades_pagination_arg": "fromId",
|
2020-10-13 18:02:47 +00:00
|
|
|
"l2_limit_range": [5, 10, 20, 50, 100, 500, 1000],
|
2021-11-13 11:00:47 +00:00
|
|
|
"ccxt_futures_name": "future"
|
2019-02-24 18:30:05 +00:00
|
|
|
}
|
2022-03-17 19:05:05 +00:00
|
|
|
_ft_has_futures: Dict = {
|
|
|
|
"stoploss_order_types": {"limit": "stop"},
|
|
|
|
}
|
2019-02-24 18:30:05 +00:00
|
|
|
|
2022-02-01 18:53:38 +00:00
|
|
|
_supported_trading_mode_margin_pairs: List[Tuple[TradingMode, MarginMode]] = [
|
2021-09-19 23:02:09 +00:00
|
|
|
# TradingMode.SPOT always supported and not required in this list
|
2022-02-01 18:53:38 +00:00
|
|
|
# (TradingMode.MARGIN, MarginMode.CROSS),
|
|
|
|
# (TradingMode.FUTURES, MarginMode.CROSS),
|
|
|
|
(TradingMode.FUTURES, MarginMode.ISOLATED)
|
2021-09-19 23:02:09 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
def stoploss_adjust(self, stop_loss: float, order: Dict, side: str) -> bool:
|
2020-01-19 18:54:30 +00:00
|
|
|
"""
|
|
|
|
Verify stop_loss against stoploss-order value (limit or price)
|
|
|
|
Returns True if adjustment is necessary.
|
2021-09-19 23:02:09 +00:00
|
|
|
:param side: "buy" or "sell"
|
2020-01-19 18:54:30 +00:00
|
|
|
"""
|
2021-09-19 23:02:09 +00:00
|
|
|
|
2022-02-10 15:41:57 +00:00
|
|
|
ordertype = 'stop' if self.trading_mode == TradingMode.FUTURES else 'stop_loss_limit'
|
|
|
|
|
|
|
|
return order['type'] == ordertype and (
|
2021-09-19 23:02:09 +00:00
|
|
|
(side == "sell" and stop_loss > float(order['info']['stopPrice'])) or
|
|
|
|
(side == "buy" and stop_loss < float(order['info']['stopPrice']))
|
|
|
|
)
|
2020-01-19 18:54:30 +00:00
|
|
|
|
2022-03-18 06:08:16 +00:00
|
|
|
def get_tickers(self, symbols: List[str] = None, cached: bool = False) -> Dict:
|
|
|
|
tickers = super().get_tickers(symbols=symbols, cached=cached)
|
|
|
|
if self.trading_mode == TradingMode.FUTURES:
|
|
|
|
# Binance's future result has no bid/ask values.
|
|
|
|
# Therefore we must fetch that from fetch_bids_asks and combine the two results.
|
|
|
|
bidsasks = self.fetch_bids_asks(symbols, cached)
|
|
|
|
tickers = deep_merge_dicts(bidsasks, tickers, allow_null_overrides=False)
|
|
|
|
return tickers
|
|
|
|
|
2021-10-02 03:21:59 +00:00
|
|
|
@retrier
|
2021-09-19 23:02:09 +00:00
|
|
|
def _set_leverage(
|
|
|
|
self,
|
|
|
|
leverage: float,
|
|
|
|
pair: Optional[str] = None,
|
|
|
|
trading_mode: Optional[TradingMode] = None
|
|
|
|
):
|
|
|
|
"""
|
2021-11-09 18:22:29 +00:00
|
|
|
Set's the leverage before making a trade, in order to not
|
|
|
|
have the same leverage on every trade
|
2021-09-19 23:02:09 +00:00
|
|
|
"""
|
|
|
|
trading_mode = trading_mode or self.trading_mode
|
|
|
|
|
|
|
|
if self._config['dry_run'] or trading_mode != TradingMode.FUTURES:
|
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
2022-02-02 04:29:04 +00:00
|
|
|
self._api.set_leverage(symbol=pair, leverage=round(leverage))
|
2021-09-19 23:02:09 +00:00
|
|
|
except ccxt.DDoSProtection as e:
|
|
|
|
raise DDosProtection(e) from e
|
|
|
|
except (ccxt.NetworkError, ccxt.ExchangeError) as e:
|
|
|
|
raise TemporaryError(
|
|
|
|
f'Could not set leverage due to {e.__class__.__name__}. Message: {e}') from e
|
2019-08-25 07:50:37 +00:00
|
|
|
except ccxt.BaseError as e:
|
|
|
|
raise OperationalException(e) from e
|
2021-09-09 01:31:04 +00:00
|
|
|
|
2021-11-21 06:21:10 +00:00
|
|
|
async def _async_get_historic_ohlcv(self, pair: str, timeframe: str,
|
2021-12-03 13:11:24 +00:00
|
|
|
since_ms: int, candle_type: CandleType,
|
|
|
|
is_new_pair: bool = False, raise_: bool = False,
|
2021-11-21 07:43:05 +00:00
|
|
|
) -> Tuple[str, str, str, List]:
|
2021-09-16 04:28:10 +00:00
|
|
|
"""
|
|
|
|
Overwrite to introduce "fast new pair" functionality by detecting the pair's listing date
|
|
|
|
Does not work for other exchanges, which don't return the earliest data when called with "0"
|
2021-12-03 13:11:24 +00:00
|
|
|
:param candle_type: Any of the enum CandleType (must match trading mode!)
|
2021-09-16 04:28:10 +00:00
|
|
|
"""
|
|
|
|
if is_new_pair:
|
2021-12-03 15:44:05 +00:00
|
|
|
x = await self._async_get_candle_history(pair, timeframe, candle_type, 0)
|
2021-11-23 16:43:37 +00:00
|
|
|
if x and x[3] and x[3][0] and x[3][0][0] > since_ms:
|
2021-09-16 04:28:10 +00:00
|
|
|
# Set starting date to first available candle.
|
2021-11-23 16:43:37 +00:00
|
|
|
since_ms = x[3][0][0]
|
2021-09-16 04:28:10 +00:00
|
|
|
logger.info(f"Candle-data for {pair} available starting with "
|
|
|
|
f"{arrow.get(since_ms // 1000).isoformat()}.")
|
2021-10-24 03:10:36 +00:00
|
|
|
|
2021-09-16 04:28:10 +00:00
|
|
|
return await super()._async_get_historic_ohlcv(
|
2021-10-24 03:10:36 +00:00
|
|
|
pair=pair,
|
|
|
|
timeframe=timeframe,
|
|
|
|
since_ms=since_ms,
|
|
|
|
is_new_pair=is_new_pair,
|
|
|
|
raise_=raise_,
|
2021-11-07 06:35:27 +00:00
|
|
|
candle_type=candle_type
|
2021-10-24 03:10:36 +00:00
|
|
|
)
|
2021-11-01 07:09:11 +00:00
|
|
|
|
2021-11-09 07:17:29 +00:00
|
|
|
def funding_fee_cutoff(self, open_date: datetime):
|
2021-11-09 18:40:42 +00:00
|
|
|
"""
|
2021-11-09 07:17:29 +00:00
|
|
|
:param open_date: The open date for a trade
|
2021-11-09 07:00:57 +00:00
|
|
|
:return: The cutoff open time for when a funding fee is charged
|
2021-11-09 18:40:42 +00:00
|
|
|
"""
|
2021-11-09 07:17:29 +00:00
|
|
|
return open_date.minute > 0 or (open_date.minute == 0 and open_date.second > 15)
|
2022-01-10 13:17:17 +00:00
|
|
|
|
2022-01-30 00:47:17 +00:00
|
|
|
def dry_run_liquidation_price(
|
2022-01-10 13:17:17 +00:00
|
|
|
self,
|
2022-01-30 00:47:17 +00:00
|
|
|
pair: str,
|
2022-01-10 13:17:17 +00:00
|
|
|
open_rate: float, # Entry price of position
|
|
|
|
is_short: bool,
|
2022-01-28 11:06:06 +00:00
|
|
|
position: float, # Absolute value of position size
|
2022-01-29 08:06:56 +00:00
|
|
|
wallet_balance: float, # Or margin balance
|
2022-01-30 00:47:17 +00:00
|
|
|
mm_ex_1: float = 0.0, # (Binance) Cross only
|
|
|
|
upnl_ex_1: float = 0.0, # (Binance) Cross only
|
2022-01-10 13:17:17 +00:00
|
|
|
) -> Optional[float]:
|
|
|
|
"""
|
|
|
|
MARGIN: https://www.binance.com/en/support/faq/f6b010588e55413aa58b7d63ee0125ed
|
|
|
|
PERPETUAL: https://www.binance.com/en/support/faq/b3c689c1f50a44cabb3a84e663b81d93
|
|
|
|
|
|
|
|
:param exchange_name:
|
|
|
|
:param open_rate: (EP1) Entry price of position
|
|
|
|
:param is_short: True if the trade is a short, false otherwise
|
2022-01-28 11:06:06 +00:00
|
|
|
:param position: Absolute value of position size (in base currency)
|
2022-01-10 13:17:17 +00:00
|
|
|
:param wallet_balance: (WB)
|
|
|
|
Cross-Margin Mode: crossWalletBalance
|
|
|
|
Isolated-Margin Mode: isolatedWalletBalance
|
2022-01-29 08:06:56 +00:00
|
|
|
:param maintenance_amt:
|
2022-01-10 13:17:17 +00:00
|
|
|
|
|
|
|
# * Only required for Cross
|
|
|
|
:param mm_ex_1: (TMM)
|
|
|
|
Cross-Margin Mode: Maintenance Margin of all other contracts, excluding Contract 1
|
|
|
|
Isolated-Margin Mode: 0
|
|
|
|
:param upnl_ex_1: (UPNL)
|
|
|
|
Cross-Margin Mode: Unrealized PNL of all other contracts, excluding Contract 1.
|
|
|
|
Isolated-Margin Mode: 0
|
|
|
|
"""
|
|
|
|
|
2022-01-30 00:47:17 +00:00
|
|
|
side_1 = -1 if is_short else 1
|
|
|
|
position = abs(position)
|
2022-02-01 18:53:38 +00:00
|
|
|
cross_vars = upnl_ex_1 - mm_ex_1 if self.margin_mode == MarginMode.CROSS else 0.0
|
2022-01-29 08:06:56 +00:00
|
|
|
|
2022-01-30 00:47:17 +00:00
|
|
|
# mm_ratio: Binance's formula specifies maintenance margin rate which is mm_ratio * 100%
|
|
|
|
# maintenance_amt: (CUM) Maintenance Amount of position
|
|
|
|
mm_ratio, maintenance_amt = self.get_maintenance_ratio_and_amt(pair, position)
|
|
|
|
|
|
|
|
if (maintenance_amt is None):
|
2022-01-10 13:17:17 +00:00
|
|
|
raise OperationalException(
|
2022-01-30 00:47:17 +00:00
|
|
|
"Parameter maintenance_amt is required by Binance.liquidation_price"
|
|
|
|
f"for {self.trading_mode.value}"
|
2022-01-10 13:17:17 +00:00
|
|
|
)
|
|
|
|
|
2022-01-29 08:06:56 +00:00
|
|
|
if self.trading_mode == TradingMode.FUTURES:
|
2022-01-10 13:17:17 +00:00
|
|
|
return (
|
|
|
|
(
|
|
|
|
(wallet_balance + cross_vars + maintenance_amt) -
|
|
|
|
(side_1 * position * open_rate)
|
|
|
|
) / (
|
|
|
|
(position * mm_ratio) - (side_1 * position)
|
|
|
|
)
|
|
|
|
)
|
2022-01-30 00:47:17 +00:00
|
|
|
else:
|
|
|
|
raise OperationalException(
|
|
|
|
"Freqtrade only supports isolated futures for leverage trading")
|
2022-02-07 07:33:42 +00:00
|
|
|
|
2022-02-15 06:04:50 +00:00
|
|
|
@retrier
|
2022-02-07 08:01:00 +00:00
|
|
|
def load_leverage_tiers(self) -> Dict[str, List[Dict]]:
|
2022-02-16 11:26:52 +00:00
|
|
|
if self.trading_mode == TradingMode.FUTURES:
|
|
|
|
if self._config['dry_run']:
|
|
|
|
leverage_tiers_path = (
|
|
|
|
Path(__file__).parent / 'binance_leverage_tiers.json'
|
|
|
|
)
|
|
|
|
with open(leverage_tiers_path) as json_file:
|
|
|
|
return json.load(json_file)
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
return self._api.fetch_leverage_tiers()
|
|
|
|
except ccxt.DDoSProtection as e:
|
|
|
|
raise DDosProtection(e) from e
|
|
|
|
except (ccxt.NetworkError, ccxt.ExchangeError) as e:
|
|
|
|
raise TemporaryError(f'Could not fetch leverage amounts due to'
|
|
|
|
f'{e.__class__.__name__}. Message: {e}') from e
|
|
|
|
except ccxt.BaseError as e:
|
|
|
|
raise OperationalException(e) from e
|
2022-02-07 07:33:42 +00:00
|
|
|
else:
|
2022-02-16 11:26:52 +00:00
|
|
|
return {}
|