freqtrade_origin/freqtrade/exchange/binance.py

217 lines
9.1 KiB
Python
Raw Permalink Normal View History

2024-05-12 14:58:33 +00:00
"""Binance exchange subclass"""
2019-02-24 18:30:05 +00:00
import logging
2023-05-14 07:13:25 +00:00
from datetime import datetime, timezone
2021-09-19 23:02:09 +00:00
from pathlib import Path
from typing import Dict, List, Optional, Tuple
2019-02-24 18:30:05 +00:00
2022-03-04 05:50:42 +00:00
import ccxt
from freqtrade.enums import CandleType, MarginMode, PriceType, TradingMode
2022-03-04 05:50:42 +00:00
from freqtrade.exceptions import DDosProtection, OperationalException, TemporaryError
from freqtrade.exchange import Exchange
2022-03-04 05:50:42 +00:00
from freqtrade.exchange.common import retrier
2024-09-04 05:15:17 +00:00
from freqtrade.exchange.exchange_types import FtHas, OHLCVResponse, Tickers
2022-09-19 05:23:26 +00:00
from freqtrade.misc import deep_merge_dicts, json_load
2020-09-28 17:39:41 +00:00
2019-02-24 18:30:05 +00:00
logger = logging.getLogger(__name__)
class Binance(Exchange):
2024-09-04 05:15:17 +00:00
_ft_has: FtHas = {
2019-02-24 18:30:05 +00:00
"stoploss_on_exchange": True,
"stop_price_param": "stopPrice",
"stop_price_prop": "stopPrice",
2022-02-02 19:40:40 +00:00
"stoploss_order_types": {"limit": "stop_loss_limit"},
"order_time_in_force": ["GTC", "FOK", "IOC", "PO"],
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",
2024-06-20 16:24:43 +00:00
"trades_has_history": True,
"l2_limit_range": [5, 10, 20, 50, 100, 500, 1000],
"ws_enabled": True,
2019-02-24 18:30:05 +00:00
}
2024-09-04 05:15:17 +00:00
_ft_has_futures: FtHas = {
"stoploss_order_types": {"limit": "stop", "market": "stop_market"},
"order_time_in_force": ["GTC", "FOK", "IOC"],
2022-03-18 15:49:37 +00:00
"tickers_have_price": False,
2023-02-07 19:51:55 +00:00
"floor_leverage": True,
"stop_price_type_field": "workingType",
2024-05-12 14:58:33 +00:00
"order_props_in_contracts": ["amount", "cost", "filled", "remaining"],
"stop_price_type_value_mapping": {
PriceType.LAST: "CONTRACT_PRICE",
PriceType.MARK: "MARK_PRICE",
},
"ws_enabled": False,
2022-03-17 19:05:05 +00:00
}
2019-02-24 18:30:05 +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
# (TradingMode.MARGIN, MarginMode.CROSS),
# (TradingMode.FUTURES, MarginMode.CROSS),
(TradingMode.FUTURES, MarginMode.ISOLATED)
2021-09-19 23:02:09 +00:00
]
2022-10-11 19:33:07 +00:00
def get_tickers(self, symbols: Optional[List[str]] = None, cached: bool = False) -> Tickers:
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
@retrier
def additional_exchange_init(self) -> None:
"""
Additional exchange initialization logic.
.api will be available at this point.
Must be overridden in child methods if required.
"""
try:
2024-05-12 14:58:33 +00:00
if self.trading_mode == TradingMode.FUTURES and not self._config["dry_run"]:
position_side = self._api.fapiPrivateGetPositionSideDual()
2024-05-12 14:58:33 +00:00
self._log_exchange_response("position_side_setting", position_side)
assets_margin = self._api.fapiPrivateGetMultiAssetsMargin()
2024-05-12 14:58:33 +00:00
self._log_exchange_response("multi_asset_margin", assets_margin)
msg = ""
2024-05-12 14:58:33 +00:00
if position_side.get("dualSidePosition") is True:
msg += (
"\nHedge Mode is not supported by freqtrade. "
2024-05-12 14:58:33 +00:00
"Please change 'Position Mode' on your binance futures account."
)
if assets_margin.get("multiAssetsMargin") is True:
msg += (
"\nMulti-Asset Mode is not supported by freqtrade. "
"Please change 'Asset Mode' on your binance futures account."
)
if msg:
raise OperationalException(msg)
except ccxt.DDoSProtection as e:
raise DDosProtection(e) from e
except (ccxt.OperationFailed, ccxt.ExchangeError) as e:
raise TemporaryError(
2024-05-12 14:58:33 +00:00
f"Error in additional_exchange_init due to {e.__class__.__name__}. Message: {e}"
) from e
2023-01-26 18:53:14 +00:00
except ccxt.BaseError as e:
raise OperationalException(e) from e
2024-05-12 14:58:33 +00:00
async def _async_get_historic_ohlcv(
self,
pair: str,
timeframe: str,
since_ms: int,
candle_type: CandleType,
is_new_pair: bool = False,
raise_: bool = False,
until_ms: Optional[int] = None,
) -> OHLCVResponse:
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]
2023-05-14 07:13:25 +00:00
logger.info(
f"Candle-data for {pair} available starting with "
2024-05-12 14:58:33 +00:00
f"{datetime.fromtimestamp(since_ms // 1000, tz=timezone.utc).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_,
2022-04-30 13:28:01 +00:00
candle_type=candle_type,
until_ms=until_ms,
2021-10-24 03:10:36 +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
"""
2023-10-09 04:37:08 +00:00
Funding fees are only charged at full hours (usually every 4-8h).
Therefore a trade opening at 10:00:01 will not be charged a funding fee until the next hour.
On binance, this cutoff is 15s.
https://github.com/freqtrade/freqtrade/pull/5779#discussion_r740175931
2021-11-09 07:17:29 +00:00
:param open_date: The open date for a trade
2023-10-09 04:37:08 +00:00
:return: True if the date falls on a full hour, False otherwise
2021-11-09 18:40:42 +00:00
"""
2023-10-09 04:37:08 +00:00
return open_date.minute == 0 and open_date.second < 15
def dry_run_liquidation_price(
self,
pair: str,
2024-05-12 14:58:33 +00:00
open_rate: float, # Entry price of position
is_short: bool,
amount: float,
stake_amount: float,
leverage: float,
2022-01-29 08:06:56 +00:00
wallet_balance: float, # Or margin balance
mm_ex_1: float = 0.0, # (Binance) Cross only
upnl_ex_1: float = 0.0, # (Binance) Cross only
) -> Optional[float]:
"""
Important: Must be fetching data from cached values as this is used by backtesting!
MARGIN: https://www.binance.com/en/support/faq/f6b010588e55413aa58b7d63ee0125ed
PERPETUAL: https://www.binance.com/en/support/faq/b3c689c1f50a44cabb3a84e663b81d93
:param pair: Pair to calculate liquidation price for
:param open_rate: Entry price of position
:param is_short: True if the trade is a short, false otherwise
:param amount: Absolute value of position size incl. leverage (in base currency)
:param stake_amount: Stake amount - Collateral in settle currency.
:param leverage: Leverage used for this position.
:param trading_mode: SPOT, MARGIN, FUTURES, etc.
:param margin_mode: Either ISOLATED or CROSS
:param wallet_balance: Amount of margin_mode in the wallet being used to trade
Cross-Margin Mode: crossWalletBalance
Isolated-Margin Mode: isolatedWalletBalance
# * 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
"""
side_1 = -1 if is_short else 1
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
# 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, stake_amount)
2024-05-12 14:58:33 +00:00
if maintenance_amt is None:
raise OperationalException(
"Parameter maintenance_amt is required by Binance.liquidation_price"
f"for {self.trading_mode}"
)
2022-01-29 08:06:56 +00:00
if self.trading_mode == TradingMode.FUTURES:
return (
2024-05-12 14:58:33 +00:00
(wallet_balance + cross_vars + maintenance_amt) - (side_1 * amount * open_rate)
) / ((amount * mm_ratio) - (side_1 * amount))
else:
raise OperationalException(
2024-05-12 14:58:33 +00:00
"Freqtrade only supports isolated futures for leverage trading"
)
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:
2024-05-12 14:58:33 +00:00
if self._config["dry_run"]:
leverage_tiers_path = Path(__file__).parent / "binance_leverage_tiers.json"
2023-02-25 16:08:02 +00:00
with leverage_tiers_path.open() as json_file:
2022-09-19 05:23:26 +00:00
return json_load(json_file)
2022-02-16 11:26:52 +00:00
else:
return self.get_leverage_tiers()
else:
2022-02-16 11:26:52 +00:00
return {}