Alpha Leak uses a phase-gated multi-strategy approach. Different strategies are unlocked as the portfolio balance grows, reflecting the different risk tolerances appropriate at each capital level. Lower phases prioritise capital preservation with conservative targets and tight hold windows; higher phases layer in higher-conviction, higher-multiple strategies.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/0xW1re/solvedocs/llms.txt
Use this file to discover all available pages before exploring further.
Phase gating
The trader’s current phase is determined by available balance:| Phase | Balance threshold | Max concurrent positions |
|---|---|---|
| 1 | 0.2 SOL+ | 1 |
| 2 | 1.0 SOL+ | 2 |
| 3 | 10.0 SOL+ | 5 |
Standard strategies
Standard strategies are triggered by wallet-based signals — tracked wallet buys on existing tokens.| Strategy | Phase | ML threshold | Dead threshold | Take profit | Stop loss | Max hold |
|---|---|---|---|---|---|---|
reach_2x_1h | 1+ | 80% | — | 2× | 0.4× | 60 min |
reach_3x_30m | 2+ | 80% | — | 3× | 0.4× | 30 min |
reach_2x_10m | 3+ | 80% | — | 2× | 0.5× | 10 min |
reach_2x_1h is the core strategy available from phase 1. It targets a 2× move within an hour with a 40% stop loss floor. The longer hold window allows time for a token to develop momentum even if the initial entry was slightly early.
reach_3x_30m is a phase 2 strategy targeting faster, larger moves. It unlocks once there is enough capital to run two concurrent positions — the tighter hold window means positions recycle faster.
reach_2x_10m is a scalping strategy available at phase 3. It requires the strongest signal quality and exits quickly regardless of outcome.
Genesis strategies
Genesis strategies are triggered bygenesis_signal events from the Genesis Watcher — signals generated from the first 60 seconds of a token’s life, before any tracked wallet has necessarily bought it.
| Strategy | Phase | Score threshold | Dead threshold | Take profit | Stop loss | Max hold |
|---|---|---|---|---|---|---|
genesis_2x_5m | 1+ | 90% | 30% | 2× | 0.55× | 5 min |
genesis_3x_30m | 1+ | 90% | 50% | 3× | 0.40× | 30 min |
genesis_3x_1h | 1+ | 90% | 50% | 3× | 0.40× | 60 min |
genesis_5x_2h | 1+ | 80% | — | 5× | 0.35× | 2 hr |
genesis_5x_2h strategy is the most ambitious: targeting a 5× move within 2 hours with a 35% stop loss floor. It accepts the lower 80% score threshold because the 2-hour hold window gives more time for the thesis to play out.
Genesis strategies are evaluated independently from standard strategies and take precedence when the incoming signal type is
genesis_signal. A single signal event will never open more than one position.Position sizing
Position size is calculated as a percentage of available balance, clamped between a minimum and maximum, and checked against the minimum balance reserve:Per-token cooldown
After closing any position — win or loss — the token is placed in a 30-minute cooldown. The trader will not re-enter the same token within this window. This prevents re-entry on tokens that have already pumped and dumped, where the signal system might still be emitting buy signals from wallets who are now stuck holding. The cooldown applies regardless of the reason for the close (take profit, stop loss, timeout, or anti-signal force exit).Signal source priority
When a signal arrives, the trader checks all eligible strategies in priority order:- Genesis strategies take precedence if the signal type is
genesis_signal - Among multiple eligible strategies, the one with the highest
priorityvalue in the config is selected - Only one position is opened per signal event — the first eligible strategy wins