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
|
2019-08-25 07:50:37 +00:00
|
|
|
import ccxt
|
2021-09-09 07:19:24 +00:00
|
|
|
|
2021-12-03 13:11:24 +00:00
|
|
|
from freqtrade.enums import CandleType, Collateral, TradingMode
|
2020-09-28 17:39:41 +00:00
|
|
|
from freqtrade.exceptions import (DDosProtection, InsufficientFundsError, InvalidOrderException,
|
|
|
|
OperationalException, TemporaryError)
|
2021-09-08 20:50:30 +00:00
|
|
|
from freqtrade.exchange import Exchange
|
2020-06-28 09:56:29 +00:00
|
|
|
from freqtrade.exchange.common import retrier
|
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,
|
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
|
|
|
}
|
|
|
|
|
2021-09-19 23:02:09 +00:00
|
|
|
_supported_trading_mode_collateral_pairs: List[Tuple[TradingMode, Collateral]] = [
|
|
|
|
# TradingMode.SPOT always supported and not required in this list
|
2021-11-14 01:45:41 +00:00
|
|
|
# (TradingMode.MARGIN, Collateral.CROSS),
|
|
|
|
# (TradingMode.FUTURES, Collateral.CROSS),
|
2022-01-10 12:45:54 +00:00
|
|
|
(TradingMode.FUTURES, Collateral.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
|
|
|
|
|
|
|
return order['type'] == 'stop_loss_limit' and (
|
|
|
|
(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
|
|
|
|
2020-06-28 09:56:29 +00:00
|
|
|
@retrier(retries=0)
|
2021-09-19 23:02:09 +00:00
|
|
|
def stoploss(self, pair: str, amount: float, stop_price: float,
|
|
|
|
order_types: Dict, side: str, leverage: float) -> Dict:
|
2019-08-25 07:50:37 +00:00
|
|
|
"""
|
|
|
|
creates a stoploss limit order.
|
|
|
|
this stoploss-limit is binance-specific.
|
|
|
|
It may work with a limited number of other exchanges, but this has not been tested yet.
|
2021-09-19 23:02:09 +00:00
|
|
|
:param side: "buy" or "sell"
|
2019-08-25 07:50:37 +00:00
|
|
|
"""
|
2020-01-19 12:12:28 +00:00
|
|
|
# Limit price threshold: As limit price should always be below stop-price
|
2020-02-02 09:47:44 +00:00
|
|
|
limit_price_pct = order_types.get('stoploss_on_exchange_limit_ratio', 0.99)
|
2021-09-19 23:02:09 +00:00
|
|
|
if side == "sell":
|
|
|
|
# TODO: Name limit_rate in other exchange subclasses
|
|
|
|
rate = stop_price * limit_price_pct
|
|
|
|
else:
|
|
|
|
rate = stop_price * (2 - limit_price_pct)
|
2020-01-19 12:12:28 +00:00
|
|
|
|
2019-08-25 07:50:37 +00:00
|
|
|
ordertype = "stop_loss_limit"
|
|
|
|
|
2020-01-12 13:55:05 +00:00
|
|
|
stop_price = self.price_to_precision(pair, stop_price)
|
2019-08-25 07:50:37 +00:00
|
|
|
|
2021-09-19 23:02:09 +00:00
|
|
|
bad_stop_price = (stop_price <= rate) if side == "sell" else (stop_price >= rate)
|
|
|
|
|
2019-08-25 07:50:37 +00:00
|
|
|
# Ensure rate is less than stop price
|
2021-09-19 23:02:09 +00:00
|
|
|
if bad_stop_price:
|
2019-08-25 07:50:37 +00:00
|
|
|
raise OperationalException(
|
2021-09-19 23:02:09 +00:00
|
|
|
'In stoploss limit order, stop price should be better than limit price')
|
2019-08-25 07:50:37 +00:00
|
|
|
|
|
|
|
if self._config['dry_run']:
|
2021-04-10 11:50:56 +00:00
|
|
|
dry_order = self.create_dry_run_order(
|
2021-09-19 23:02:09 +00:00
|
|
|
pair, ordertype, side, amount, stop_price, leverage)
|
2019-08-25 07:50:37 +00:00
|
|
|
return dry_order
|
|
|
|
|
|
|
|
try:
|
2019-08-25 08:08:06 +00:00
|
|
|
params = self._params.copy()
|
|
|
|
params.update({'stopPrice': stop_price})
|
|
|
|
|
2020-01-12 13:55:05 +00:00
|
|
|
amount = self.amount_to_precision(pair, amount)
|
2019-08-25 07:50:37 +00:00
|
|
|
|
2020-01-12 13:55:05 +00:00
|
|
|
rate = self.price_to_precision(pair, rate)
|
2019-08-25 07:50:37 +00:00
|
|
|
|
2021-09-19 23:02:09 +00:00
|
|
|
self._lev_prep(pair, leverage)
|
|
|
|
order = self._api.create_order(symbol=pair, type=ordertype, side=side,
|
2020-05-13 05:15:18 +00:00
|
|
|
amount=amount, price=rate, params=params)
|
2019-08-25 07:50:37 +00:00
|
|
|
logger.info('stoploss limit order added for %s. '
|
|
|
|
'stop price: %s. limit: %s', pair, stop_price, rate)
|
2021-06-10 18:09:25 +00:00
|
|
|
self._log_exchange_response('create_stoploss_order', order)
|
2019-08-25 07:50:37 +00:00
|
|
|
return order
|
|
|
|
except ccxt.InsufficientFunds as e:
|
2020-08-14 07:57:13 +00:00
|
|
|
raise InsufficientFundsError(
|
2021-09-19 23:02:09 +00:00
|
|
|
f'Insufficient funds to create {ordertype} {side} order on market {pair}. '
|
|
|
|
f'Tried to {side} amount {amount} at rate {rate}. '
|
2019-08-25 07:50:37 +00:00
|
|
|
f'Message: {e}') from e
|
|
|
|
except ccxt.InvalidOrder as e:
|
2019-09-01 07:08:35 +00:00
|
|
|
# Errors:
|
|
|
|
# `binance Order would trigger immediately.`
|
|
|
|
raise InvalidOrderException(
|
2021-09-19 23:02:09 +00:00
|
|
|
f'Could not create {ordertype} {side} order on market {pair}. '
|
|
|
|
f'Tried to {side} amount {amount} at rate {rate}. '
|
2019-08-25 07:50:37 +00:00
|
|
|
f'Message: {e}') from e
|
2020-06-28 09:17:06 +00:00
|
|
|
except ccxt.DDoSProtection as e:
|
|
|
|
raise DDosProtection(e) from e
|
2019-08-25 07:50:37 +00:00
|
|
|
except (ccxt.NetworkError, ccxt.ExchangeError) as e:
|
|
|
|
raise TemporaryError(
|
2021-09-19 23:02:09 +00:00
|
|
|
f'Could not place {side} order due to {e.__class__.__name__}. Message: {e}') from e
|
|
|
|
except ccxt.BaseError as e:
|
|
|
|
raise OperationalException(e) from e
|
|
|
|
|
|
|
|
@retrier
|
2022-01-14 12:11:17 +00:00
|
|
|
def fill_leverage_brackets(self) -> None:
|
2021-09-19 23:02:09 +00:00
|
|
|
"""
|
2021-11-09 18:22:29 +00:00
|
|
|
Assigns property _leverage_brackets to a dictionary of information about the leverage
|
|
|
|
allowed on each pair
|
2022-01-14 12:11:17 +00:00
|
|
|
After exectution, self._leverage_brackets = {
|
|
|
|
"pair_name": [
|
|
|
|
[notional_floor, maintenenace_margin_ratio, maintenance_amt],
|
|
|
|
...
|
|
|
|
],
|
|
|
|
...
|
|
|
|
}
|
|
|
|
e.g. {
|
|
|
|
"ETH/USDT:USDT": [
|
|
|
|
[0.0, 0.01, 0.0],
|
|
|
|
[10000, 0.02, 0.01],
|
|
|
|
...
|
|
|
|
],
|
|
|
|
...
|
|
|
|
}
|
2021-09-19 23:02:09 +00:00
|
|
|
"""
|
|
|
|
if self.trading_mode == TradingMode.FUTURES:
|
|
|
|
try:
|
|
|
|
if self._config['dry_run']:
|
|
|
|
leverage_brackets_path = (
|
|
|
|
Path(__file__).parent / 'binance_leverage_brackets.json'
|
|
|
|
)
|
|
|
|
with open(leverage_brackets_path) as json_file:
|
|
|
|
leverage_brackets = json.load(json_file)
|
|
|
|
else:
|
|
|
|
leverage_brackets = self._api.load_leverage_brackets()
|
|
|
|
|
2022-01-10 18:28:22 +00:00
|
|
|
for pair, brkts in leverage_brackets.items():
|
2022-01-14 12:11:17 +00:00
|
|
|
[amt, old_ratio] = [0.0, 0.0]
|
2022-01-10 18:28:22 +00:00
|
|
|
brackets = []
|
|
|
|
for [notional_floor, mm_ratio] in brkts:
|
2022-01-14 11:49:46 +00:00
|
|
|
amt = (
|
2022-01-20 03:36:54 +00:00
|
|
|
(float(notional_floor) * (float(mm_ratio) - float(old_ratio)))
|
|
|
|
+ amt
|
2022-01-14 12:11:17 +00:00
|
|
|
) if old_ratio else 0.0
|
2022-01-10 18:28:22 +00:00
|
|
|
old_ratio = mm_ratio
|
|
|
|
brackets.append([
|
|
|
|
float(notional_floor),
|
2022-01-13 07:21:36 +00:00
|
|
|
float(mm_ratio),
|
2022-01-10 18:28:22 +00:00
|
|
|
amt,
|
|
|
|
])
|
|
|
|
self._leverage_brackets[pair] = brackets
|
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 fetch leverage amounts due to'
|
|
|
|
f'{e.__class__.__name__}. Message: {e}') from e
|
|
|
|
except ccxt.BaseError as e:
|
|
|
|
raise OperationalException(e) from e
|
|
|
|
|
2022-01-20 03:41:43 +00:00
|
|
|
def get_max_leverage(self, pair: str, nominal_value: float) -> float:
|
2021-09-19 23:02:09 +00:00
|
|
|
"""
|
2021-11-09 18:22:29 +00:00
|
|
|
Returns the maximum leverage that a pair can be traded at
|
|
|
|
:param pair: The base/quote currency pair being traded
|
|
|
|
:nominal_value: The total value of the trade in quote currency (collateral + debt)
|
2021-09-19 23:02:09 +00:00
|
|
|
"""
|
2021-11-01 08:46:35 +00:00
|
|
|
if pair not in self._leverage_brackets:
|
|
|
|
return 1.0
|
2021-09-19 23:02:09 +00:00
|
|
|
pair_brackets = self._leverage_brackets[pair]
|
2022-01-10 13:17:17 +00:00
|
|
|
for [notional_floor, mm_ratio, _] in reversed(pair_brackets):
|
2022-01-10 07:40:40 +00:00
|
|
|
if nominal_value >= notional_floor:
|
2022-01-20 03:50:06 +00:00
|
|
|
if mm_ratio != 0:
|
|
|
|
return 1/mm_ratio
|
|
|
|
else:
|
|
|
|
logger.warning(f"mm_ratio for {pair} with nominal_value {nominal_value} is 0")
|
2022-01-10 13:17:17 +00:00
|
|
|
return 1.0
|
2021-09-19 23:02:09 +00:00
|
|
|
|
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:
|
|
|
|
self._api.set_leverage(symbol=pair, leverage=leverage)
|
|
|
|
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
|
|
|
|
|
|
|
def get_maintenance_ratio_and_amt(
|
|
|
|
self,
|
2022-01-13 07:21:36 +00:00
|
|
|
pair: str,
|
|
|
|
nominal_value: Optional[float] = 0.0,
|
2022-01-14 12:11:17 +00:00
|
|
|
) -> Tuple[float, Optional[float]]:
|
2022-01-14 11:49:46 +00:00
|
|
|
"""
|
2022-01-14 12:11:17 +00:00
|
|
|
Formula: https://www.binance.com/en/support/faq/b3c689c1f50a44cabb3a84e663b81d93
|
|
|
|
|
2022-01-10 13:17:17 +00:00
|
|
|
Maintenance amt = Floor of Position Bracket on Level n *
|
|
|
|
difference between
|
|
|
|
Maintenance Margin Rate on Level n and
|
|
|
|
Maintenance Margin Rate on Level n-1)
|
|
|
|
+ Maintenance Amount on Level n-1
|
2022-01-14 12:11:17 +00:00
|
|
|
:return: The maintenance margin ratio and maintenance amount
|
2022-01-14 11:49:46 +00:00
|
|
|
"""
|
2022-01-14 12:11:17 +00:00
|
|
|
if nominal_value is None:
|
|
|
|
raise OperationalException(
|
|
|
|
"nominal value is required for binance.get_maintenance_ratio_and_amt")
|
2022-01-10 13:17:17 +00:00
|
|
|
if pair not in self._leverage_brackets:
|
|
|
|
raise InvalidOrderException(f"Cannot calculate liquidation price for {pair}")
|
|
|
|
pair_brackets = self._leverage_brackets[pair]
|
|
|
|
for [notional_floor, mm_ratio, amt] in reversed(pair_brackets):
|
|
|
|
if nominal_value >= notional_floor:
|
|
|
|
return (mm_ratio, amt)
|
|
|
|
raise OperationalException("nominal value can not be lower than 0")
|
|
|
|
# The lowest notional_floor for any pair in loadLeverageBrackets is always 0 because it
|
|
|
|
# describes the min amount for a bracket, and the lowest bracket will always go down to 0
|
|
|
|
|
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)
|
|
|
|
cross_vars = upnl_ex_1 - mm_ex_1 if self.collateral == Collateral.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")
|