Alpha Leak uses a phase-gated multi-strategy approach where different strategies unlock as the portfolio balance grows. Lower phases prioritise capital preservation with conservative targets and tight hold windows; higher phases layer in higher-conviction, higher-multiple strategies as the base capital proves itself.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/alphaleaks60-maker/docs2/llms.txt
Use this file to discover all available pages before exploring further.
Phase gating
The trader’s current phase is determined solely by available balance:| Phase | Balance threshold | Max concurrent positions |
|---|---|---|
| 1 | 0.2 SOL+ | 1 |
| 2 | 1.0 SOL+ | 2 |
| 3 | 10.0 SOL+ | 5 |
Phase is evaluated dynamically on every signal. If the balance drops below a phase threshold mid-session, strategies from that phase and above are immediately ineligible.
Standard strategies
Standard strategies are triggered bysignal events — signals generated from tracked wallet buys on existing tokens. All standard strategies require an 80% ML score threshold.
| 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 — core phase 1 strategy
reach_2x_1h — core phase 1 strategy
The foundational strategy available from the start of phase 1. It targets a 2× move within an hour with a 60% stop loss floor (0.4×). The longer hold window allows time for a token to develop momentum even if the initial entry was slightly early. This is the strategy that will execute the majority of trades at small balances.
reach_3x_30m — phase 2 momentum strategy
reach_3x_30m — phase 2 momentum strategy
Unlocked at phase 2 when there is enough capital to run two concurrent positions. It targets faster, larger moves — a 3× return within 30 minutes. The tighter hold window means positions recycle faster, keeping capital available for the next opportunity. The stop loss is identical to
reach_2x_1h at 0.4×.reach_2x_10m — phase 3 scalping strategy
reach_2x_10m — phase 3 scalping strategy
A scalping strategy available at phase 3. It uses a tighter stop loss (0.5× vs 0.4×) and exits after 10 minutes regardless of outcome. It is designed for high-velocity, high-confidence entries where speed of exit matters more than giving the trade room to breathe. Requires full ML confidence and a strong signal quality context to fire.
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 in.
| 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 |
Why genesis strategies require higher thresholds
Genesis strategies require a 90% score threshold (versus 80% for standard strategies) to compensate for the inherently noisier signal environment. There is less on-chain history to work with when scoring a token that is only 60 seconds old — the model has fewer data points and operates at the edge of its training distribution. The dead probability veto is also stricter on fast genesis strategies:genesis_2x_5m vetoes at 30%, and genesis_3x_30m and genesis_3x_1h veto at 50%. This filters out tokens that show early creation signals but also show high probability of dying before any move materialises.
genesis_2x_5m — rapid genesis entry
genesis_2x_5m — rapid genesis entry
The fastest genesis strategy: a 2× target within 5 minutes, with a tight 45% stop loss (0.55×) and the strictest dead probability veto (30%). It is designed for tokens with an exceptionally clean genesis signal that may move quickly and require a fast exit decision.
genesis_3x_30m and genesis_3x_1h — momentum genesis
genesis_3x_30m and genesis_3x_1h — momentum genesis
Both target a 3× move with a 60% stop loss floor. The difference is hold window: 30 minutes versus 60 minutes. The 1-hour version gives more time for the thesis to develop at the cost of holding through more intermediate volatility.
genesis_5x_2h — long-duration high-multiple genesis
genesis_5x_2h — long-duration high-multiple genesis
The most ambitious genesis strategy: a 5× target within 2 hours with a 65% stop loss floor (0.35×). It accepts a lower score threshold (80%) because the 2-hour hold window gives substantially more time for the thesis to play out, reducing the signal quality required at entry to justify the risk.
Position sizing
Position size is calculated as a percentage of available balance, clamped between a minimum and maximum, and further capped to preserve the circuit breaker’s minimum balance reserve:| Parameter | Default value |
|---|---|
position_pct | 10% of available balance |
min_position | 0.05 SOL |
max_position | 2.0 SOL |
min_balance_reserve | 0.08 SOL (circuit breaker floor) |
min_position, so the trade is skipped until the balance grows. At phase 3 with 15 SOL, a typical position is 1.5 SOL.
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 in the token and effectively holding a loss.Signal source priority
When a signal arrives, the trader checks all eligible strategies in priority order:- If the signal type is
genesis_signal, genesis strategies are evaluated first. - Among multiple eligible strategies, the one with the highest
priorityvalue in the strategy configuration is selected. - Only one position is opened per signal event — the first eligible strategy wins.
Circuit breakers
How drawdown, consecutive losses, and minimum balance halt trading.
Genesis Watcher
How genesis signals are generated in the first 60 seconds of a token’s life.