Leverage
For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending
.mdto page URLs; this page is available as Markdown.
Progressive Leverage Framework
Calculation Methodology
Igniz implements a progressive leverage system aligned with institutional exchange standards, where permissible leverage decreases as position size increases. This framework mitigates systemic risk from concentrated large positions while maximizing capital efficiency for smaller allocations.
The maintenance margin requirement follows a tiered formula:
maintenance_requirement = position_notional × tier_rate - tier_adjustmentBoth tier_rate and tier_adjustment are determined by position size brackets rather than specific assets, creating uniform risk parameters across all instruments within each tier.
Tier Rate Calculation:
The maintenance rate at each tier derives from the maximum leverage available at that tier:
tier_rate(level = n) = (initial_margin_at_max_leverage_level_n) / 2For example, at a tier offering 25x maximum leverage, the maintenance rate equals 2.0% (calculated as 4% initial margin / 2).
Adjustment Factor:
The tier adjustment factor ensures smooth transitions between leverage brackets, preventing discontinuous margin jumps at tier boundaries:
tier_adjustment(level = 0) = 0
tier_adjustment(level = n) = tier_adjustment(level = n - 1) +
threshold_notional(level = n) × (tier_rate(level = n) - tier_rate(level = n - 1))This adjustment mechanism ensures that:
Incremental position growth incurs margin costs at the current tier's rate
Total maintenance margin scales continuously across tier boundaries
No sudden margin spikes occur when crossing threshold values
Framework Identification:
Each leverage framework is assigned a unique identifier. Tier specifications are accessible via the platform's meta endpoint. For framework IDs below 50, a single-tier structure applies with maximum leverage equal to the ID value.
Last updated