2021-08-06 07:15:18 +00:00
|
|
|
|
from typing import Optional
|
|
|
|
|
|
2021-09-19 23:17:09 +00:00
|
|
|
|
from freqtrade.enums import Collateral, TradingMode
|
2021-08-06 07:15:18 +00:00
|
|
|
|
from freqtrade.exceptions import OperationalException
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def liquidation_price(
|
|
|
|
|
exchange_name: str,
|
|
|
|
|
open_rate: float,
|
|
|
|
|
is_short: bool,
|
|
|
|
|
leverage: float,
|
|
|
|
|
trading_mode: TradingMode,
|
2021-09-19 04:48:28 +00:00
|
|
|
|
collateral: Optional[Collateral],
|
|
|
|
|
wallet_balance: Optional[float],
|
2021-09-19 05:46:41 +00:00
|
|
|
|
mm_ex_1: Optional[float],
|
|
|
|
|
upnl_ex_1: Optional[float],
|
|
|
|
|
maintenance_amt: Optional[float],
|
|
|
|
|
position: Optional[float],
|
|
|
|
|
entry_price: Optional[float],
|
|
|
|
|
mm_rate: Optional[float]
|
2021-08-06 07:15:18 +00:00
|
|
|
|
) -> Optional[float]:
|
2021-08-25 20:27:55 +00:00
|
|
|
|
if trading_mode == TradingMode.SPOT:
|
2021-08-06 07:15:18 +00:00
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
if not collateral:
|
|
|
|
|
raise OperationalException(
|
|
|
|
|
"Parameter collateral is required by liquidation_price when trading_mode is "
|
|
|
|
|
f"{trading_mode}"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if exchange_name.lower() == "binance":
|
2021-09-19 07:06:01 +00:00
|
|
|
|
if None in [wallet_balance, mm_ex_1, upnl_ex_1, maintenance_amt, position, entry_price,
|
|
|
|
|
mm_rate]:
|
2021-09-19 04:48:28 +00:00
|
|
|
|
raise OperationalException(
|
2021-09-19 05:46:41 +00:00
|
|
|
|
f"Parameters wallet_balance, mm_ex_1, upnl_ex_1, "
|
|
|
|
|
f"maintenance_amt, position, entry_price, mm_rate "
|
|
|
|
|
f"is required by liquidation_price when exchange is {exchange_name.lower()}")
|
2021-09-19 04:48:28 +00:00
|
|
|
|
|
2021-09-23 06:24:05 +00:00
|
|
|
|
# Suppress incompatible type "Optional[float]"; expected "float" as the check exists above.
|
|
|
|
|
return binance(open_rate, is_short, leverage, trading_mode, collateral, # type: ignore
|
|
|
|
|
wallet_balance, mm_ex_1, upnl_ex_1, maintenance_amt, # type: ignore
|
|
|
|
|
position, entry_price, mm_rate) # type: ignore
|
2021-08-06 07:15:18 +00:00
|
|
|
|
elif exchange_name.lower() == "kraken":
|
|
|
|
|
return kraken(open_rate, is_short, leverage, trading_mode, collateral)
|
|
|
|
|
elif exchange_name.lower() == "ftx":
|
|
|
|
|
return ftx(open_rate, is_short, leverage, trading_mode, collateral)
|
|
|
|
|
raise OperationalException(
|
2021-08-25 20:27:55 +00:00
|
|
|
|
f"liquidation_price is not implemented for {exchange_name}"
|
2021-08-06 07:15:18 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def exception(
|
|
|
|
|
exchange: str,
|
|
|
|
|
trading_mode: TradingMode,
|
2021-09-19 04:48:28 +00:00
|
|
|
|
collateral: Collateral,
|
2021-08-06 07:15:18 +00:00
|
|
|
|
):
|
|
|
|
|
"""
|
|
|
|
|
Raises an exception if exchange used doesn't support desired leverage mode
|
2021-09-19 04:48:28 +00:00
|
|
|
|
:param exchange: Name of the exchange
|
2021-08-06 07:15:18 +00:00
|
|
|
|
:param trading_mode: spot, margin, futures
|
|
|
|
|
:param collateral: cross, isolated
|
|
|
|
|
"""
|
2021-09-19 04:48:28 +00:00
|
|
|
|
|
2021-08-06 07:15:18 +00:00
|
|
|
|
raise OperationalException(
|
2021-09-19 04:48:28 +00:00
|
|
|
|
f"{exchange} does not support {collateral.value} Mode {trading_mode.value} trading ")
|
2021-08-06 07:15:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def binance(
|
|
|
|
|
open_rate: float,
|
|
|
|
|
is_short: bool,
|
|
|
|
|
leverage: float,
|
|
|
|
|
trading_mode: TradingMode,
|
2021-09-17 02:47:15 +00:00
|
|
|
|
collateral: Collateral,
|
|
|
|
|
wallet_balance: float,
|
2021-09-19 05:46:41 +00:00
|
|
|
|
mm_ex_1: float,
|
|
|
|
|
upnl_ex_1: float,
|
|
|
|
|
maintenance_amt: float,
|
|
|
|
|
position: float,
|
|
|
|
|
entry_price: float,
|
|
|
|
|
mm_rate: float,
|
2021-08-06 07:15:18 +00:00
|
|
|
|
):
|
2021-09-19 23:17:09 +00:00
|
|
|
|
"""
|
2021-08-06 07:15:18 +00:00
|
|
|
|
Calculates the liquidation price on Binance
|
2021-09-19 04:48:28 +00:00
|
|
|
|
:param open_rate: open_rate
|
|
|
|
|
:param is_short: true or false
|
|
|
|
|
:param leverage: leverage in float
|
2021-08-06 07:15:18 +00:00
|
|
|
|
:param trading_mode: spot, margin, futures
|
|
|
|
|
:param collateral: cross, isolated
|
2021-09-17 02:47:15 +00:00
|
|
|
|
|
|
|
|
|
:param wallet_balance: Wallet Balance is crossWalletBalance in Cross-Margin Mode.
|
2021-09-19 05:46:41 +00:00
|
|
|
|
Wallet Balance is isolatedWalletBalance in Isolated Margin Mode
|
2021-09-17 02:47:15 +00:00
|
|
|
|
|
2021-09-19 05:46:41 +00:00
|
|
|
|
:param mm_ex_1: Maintenance Margin of all other contracts,
|
|
|
|
|
excluding Contract 1. If it is an isolated margin mode, then TMM=0
|
2021-09-17 02:47:15 +00:00
|
|
|
|
|
2021-09-19 05:46:41 +00:00
|
|
|
|
:param upnl_ex_1: Unrealized PNL of all other contracts, excluding Contract 1.
|
|
|
|
|
If it is an isolated margin mode, then UPNL=0
|
2021-09-17 02:47:15 +00:00
|
|
|
|
|
2021-09-19 05:46:41 +00:00
|
|
|
|
:param maintenance_amt: Maintenance Amount of position (one-way mode)
|
2021-09-17 02:47:15 +00:00
|
|
|
|
|
2021-09-19 05:46:41 +00:00
|
|
|
|
:param position: Absolute value of position size (one-way mode)
|
2021-09-17 02:47:15 +00:00
|
|
|
|
|
2021-09-19 05:46:41 +00:00
|
|
|
|
:param entry_price: Entry Price of position (one-way mode)
|
2021-09-17 02:47:15 +00:00
|
|
|
|
|
2021-09-19 05:46:41 +00:00
|
|
|
|
:param mm_rate: Maintenance margin rate of position (one-way mode)
|
2021-09-17 02:47:15 +00:00
|
|
|
|
|
2021-08-06 07:15:18 +00:00
|
|
|
|
"""
|
|
|
|
|
# TODO-lev: Additional arguments, fill in formulas
|
2021-09-17 02:47:15 +00:00
|
|
|
|
wb = wallet_balance
|
2021-09-19 05:46:41 +00:00
|
|
|
|
tmm_1 = 0.0 if collateral == Collateral.ISOLATED else mm_ex_1
|
|
|
|
|
upnl_1 = 0.0 if collateral == Collateral.ISOLATED else upnl_ex_1
|
|
|
|
|
cum_b = maintenance_amt
|
|
|
|
|
side_1 = -1 if is_short else 1
|
|
|
|
|
position = abs(position)
|
|
|
|
|
ep1 = entry_price
|
|
|
|
|
mmr_b = mm_rate
|
2021-08-06 07:15:18 +00:00
|
|
|
|
|
|
|
|
|
if trading_mode == TradingMode.MARGIN and collateral == Collateral.CROSS:
|
|
|
|
|
# TODO-lev: perform a calculation based on this formula
|
|
|
|
|
# https://www.binance.com/en/support/faq/f6b010588e55413aa58b7d63ee0125ed
|
2021-09-19 23:17:09 +00:00
|
|
|
|
exception("binance", trading_mode, collateral)
|
|
|
|
|
elif trading_mode == TradingMode.FUTURES and collateral == Collateral.ISOLATED:
|
2021-09-19 04:48:28 +00:00
|
|
|
|
# https://www.binance.com/en/support/faq/b3c689c1f50a44cabb3a84e663b81d93
|
|
|
|
|
# Liquidation Price of USDⓈ-M Futures Contracts Isolated
|
|
|
|
|
|
|
|
|
|
# Isolated margin mode, then TMM=0,UPNL=0
|
2021-09-19 05:46:41 +00:00
|
|
|
|
return (wb + cum_b - side_1 * position * ep1) / (
|
|
|
|
|
position * mmr_b - side_1 * position)
|
2021-09-19 04:48:28 +00:00
|
|
|
|
|
|
|
|
|
elif trading_mode == TradingMode.FUTURES and collateral == Collateral.CROSS:
|
2021-09-19 23:17:09 +00:00
|
|
|
|
# TODO-lev: perform a calculation based on this formula
|
|
|
|
|
# https://www.binance.com/en/support/faq/b3c689c1f50a44cabb3a84e663b81d93
|
2021-09-19 04:48:28 +00:00
|
|
|
|
# Liquidation Price of USDⓈ-M Futures Contracts Cross
|
|
|
|
|
|
|
|
|
|
# Isolated margin mode, then TMM=0,UPNL=0
|
2021-09-19 05:46:41 +00:00
|
|
|
|
return (wb - tmm_1 + upnl_1 + cum_b - side_1 * position * ep1) / (
|
|
|
|
|
position * mmr_b - side_1 * position)
|
2021-08-06 07:15:18 +00:00
|
|
|
|
|
|
|
|
|
# If nothing was returned
|
2021-09-19 23:17:09 +00:00
|
|
|
|
exception("binance", trading_mode, collateral)
|
2021-08-06 07:15:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def kraken(
|
|
|
|
|
open_rate: float,
|
|
|
|
|
is_short: bool,
|
|
|
|
|
leverage: float,
|
|
|
|
|
trading_mode: TradingMode,
|
|
|
|
|
collateral: Collateral
|
|
|
|
|
):
|
|
|
|
|
"""
|
|
|
|
|
Calculates the liquidation price on Kraken
|
2021-09-19 23:17:09 +00:00
|
|
|
|
:param name: Name of the exchange
|
2021-08-06 07:15:18 +00:00
|
|
|
|
:param trading_mode: spot, margin, futures
|
|
|
|
|
:param collateral: cross, isolated
|
|
|
|
|
"""
|
|
|
|
|
# TODO-lev: Additional arguments, fill in formulas
|
|
|
|
|
|
|
|
|
|
if collateral == Collateral.CROSS:
|
|
|
|
|
if trading_mode == TradingMode.MARGIN:
|
|
|
|
|
exception("kraken", trading_mode, collateral)
|
|
|
|
|
# TODO-lev: perform a calculation based on this formula
|
|
|
|
|
# https://support.kraken.com/hc/en-us/articles/203325763-Margin-Call-Level-and-Margin-Liquidation-Level
|
|
|
|
|
elif trading_mode == TradingMode.FUTURES:
|
2021-09-19 23:17:09 +00:00
|
|
|
|
exception("kraken", trading_mode, collateral)
|
2021-08-06 07:15:18 +00:00
|
|
|
|
|
|
|
|
|
# If nothing was returned
|
2021-09-19 23:17:09 +00:00
|
|
|
|
exception("kraken", trading_mode, collateral)
|
2021-08-06 07:15:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def ftx(
|
|
|
|
|
open_rate: float,
|
|
|
|
|
is_short: bool,
|
|
|
|
|
leverage: float,
|
|
|
|
|
trading_mode: TradingMode,
|
|
|
|
|
collateral: Collateral
|
|
|
|
|
):
|
|
|
|
|
"""
|
|
|
|
|
Calculates the liquidation price on FTX
|
2021-09-19 23:17:09 +00:00
|
|
|
|
:param name: Name of the exchange
|
2021-08-06 07:15:18 +00:00
|
|
|
|
:param trading_mode: spot, margin, futures
|
|
|
|
|
:param collateral: cross, isolated
|
|
|
|
|
"""
|
|
|
|
|
if collateral == Collateral.CROSS:
|
|
|
|
|
# TODO-lev: Additional arguments, fill in formulas
|
2021-09-19 23:17:09 +00:00
|
|
|
|
exception("ftx", trading_mode, collateral)
|
2021-08-06 07:15:18 +00:00
|
|
|
|
|
|
|
|
|
# If nothing was returned
|
2021-09-19 23:17:09 +00:00
|
|
|
|
exception("ftx", trading_mode, collateral)
|
2021-09-19 07:06:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
print(liquidation_price("binance", 0.0, False, 1, TradingMode.FUTURES, Collateral.ISOLATED,
|
|
|
|
|
1535443.01, 356512.508,
|
|
|
|
|
0.0, 16300.000, 109.488, 32481.980, 0.025))
|