How does the liquidation warning notification work?
What are the settings available?
the percentage above/below the liquidation price of your position at which a warning notification will be sent to you
the expiry date of your liquidation reminders
the frequency of liquidation reminders per position
When will the liquidation warning notifications be triggered based on the percentage set?
Long Positions
warning_price = liquidation_price * (1 + threshold_percentage / 100)
Notification will be sent when the market price is less than or equal to the warning price.
Short Positions
warning_price = liquidation_price * (1 - threshold_percentage / 100)
Notification will be sent when the market price is greater than or equal to the warning price.
Last updated