Futures
Access hundreds of perpetual contracts
TradFi
Gold
One platform for global traditional assets
Options
Hot
Trade European-style vanilla options
Unified Account
Maximize your capital efficiency
Demo Trading
Introduction to Futures Trading
Learn the basics of futures trading
Futures Events
Join events to earn rewards
Demo Trading
Use virtual funds to practice risk-free trading
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
Pre-IPOs
Unlock full access to global stock IPOs
Alpha Points
Trade on-chain assets and earn airdrops
Futures Points
Earn futures points and claim airdrop rewards
$SIREN
The basis (Basis) expanded from -0.4% to -75.2% (meaning **the futures price is far below the spot price**). In the cryptocurrency market, this phenomenon is called “**Deep Backwardation**.”
For SIREN (or any token), such an exaggerated basis usually indicates that the coin is facing a **devastating liquidity crisis or a “death spiral”**. It specifically highlights the following core issues:
1. “Liquidation Cascade” in the futures market
This is the most direct cause. When the price starts to fall:
* Long positions are forcibly liquidated (automatic sell orders issued by the system).
* Due to the enormous sell volume and the exhaustion of buy-side counterparties, the price plunges further in an instant.
* This **automated selling** executes much faster in the futures (Perp) market than in the spot market, causing the futures price to drop sharply like a guillotine, while the spot market reacts more slowly, widening the price gap.
2. Arbitrage Mechanism Completely Fails
In normal markets, if the basis reaches -5%, arbitrageurs would “buy futures and sell spot” to earn riskless profit, thus arbitraging away the spread. A basis of -75% indicates:
* **Spot cannot be sold**: Possibly the exchange has disabled lending for this token (no shorting in spot), or deposits/withdrawals are paused (wallet maintenance).
* **Funding costs explode**: Too many short positions in futures, leading to extremely high funding rates paid to longs, but even so, traders still open shorts or close longs recklessly.
* **Risk aversion**: Arbitrageurs fear exchange insolvency, forced liquidation, or token zeroing, so even with a 75% theoretical profit, they dare not take the risk.
3. Market Expectation that the Token Will “Go to Zero” or Be “Delisted”
Futures prices serve as a “price discovery” function. When futures fall faster and deeper than spot, it indicates:
* **Informed traders are fleeing**: Futures traders are generally more risk-sensitive, hedging or cashing out at any price (even at a 70% discount).
* **Delisting anticipation**: If there are rumors that the token will soon be delisted from exchanges, futures often crash first.
4. “Zombie” Spot Market Liquidity Freeze
Why does the spot price still stay high (relative to futures)?
* The spot order book might be too thin, with little volume, causing the displayed price to be a “false” high.
* Or spot holders are in a “hoarding” or “stuck” state, lacking liquidity to match trades.
5. Project Team or Whale Selling (Rug Pull or Whale Dump)
If SIREN is a small or mid-sized project, such a trend strongly resembles a **Rug Pull** or **large-scale sell-off caused by hacking**. The futures market amplifies this panic by dozens of times due to leverage effects.
---
Returning to your strategy code:
Your strategy performs very well at this stage, because:
1. **basis_ok check**: Your code has `abs(basis) < self.cfg.MAX_BASIS_DEVIATION`. When the basis exceeds 2%, it refuses to open positions.
2. **Circuit breaker check**: When the basis widens to 75%, it’s often accompanied by sharp price volatility (expanded range), triggering your **[Circuit Breaker]** logic.
**Summary advice:**
When the basis exceeds **-5%**, any mean reversion strategy should **unconditionally stop**. Because at this point, the market is no longer “random walk,” but a “one-way collapse.” The logs show that SIREN is already in a **crash state** at that moment, and a basis of -75% indicates the market believes this token is beyond saving.