forked from kodorvan/stcs
Fixed get liq price
This commit is contained in:
@@ -134,11 +134,7 @@ def check_limit_price(limit_price, min_price, max_price) -> str | None:
|
|||||||
|
|
||||||
|
|
||||||
async def get_liquidation_price(
|
async def get_liquidation_price(
|
||||||
tg_id: int,
|
tg_id: int, symbol: str, entry_price: float, leverage: float
|
||||||
symbol: str,
|
|
||||||
entry_price: float,
|
|
||||||
order_quantity: float,
|
|
||||||
leverage: float
|
|
||||||
) -> tuple[float, float]:
|
) -> tuple[float, float]:
|
||||||
"""
|
"""
|
||||||
Function to get liquidation price
|
Function to get liquidation price
|
||||||
@@ -149,11 +145,7 @@ async def get_liquidation_price(
|
|||||||
risk_list = get_risk_info.get("result", {}).get("list", [])
|
risk_list = get_risk_info.get("result", {}).get("list", [])
|
||||||
risk_level = risk_list[0] if risk_list else {}
|
risk_level = risk_list[0] if risk_list else {}
|
||||||
maintenance_margin_rate = safe_float(risk_level.get("maintenanceMargin"))
|
maintenance_margin_rate = safe_float(risk_level.get("maintenanceMargin"))
|
||||||
maint_margin_deduction = safe_float(risk_level.get("initialMargin"))
|
|
||||||
max_leverage = safe_float(risk_level.get("maxLeverage"))
|
|
||||||
position_value = order_quantity * entry_price
|
|
||||||
initial_margin = position_value / max_leverage
|
|
||||||
maint_margin = (position_value * maintenance_margin_rate) - maint_margin_deduction
|
|
||||||
|
|
||||||
liq_price_long = entry_price * (1 - 1 / leverage + maintenance_margin_rate)
|
liq_price_long = entry_price * (1 - 1 / leverage + maintenance_margin_rate)
|
||||||
liq_price_short = entry_price * (1 + 1 / leverage - maintenance_margin_rate)
|
liq_price_short = entry_price * (1 + 1 / leverage - maintenance_margin_rate)
|
||||||
|
Reference in New Issue
Block a user