โ† Back to services

Markets ยท Dual Strategy Engine

๐Ÿ‹๐ŸŸ WhaleTrack

Autonomous liquidity radar with dual-strategy architecture. The Whale hunts major liquidity sweeps (3-10% moves). The Minnow darts in front of whale momentum for quick scalps. Both run in parallel with coordinated risk management.

๐Ÿ‹
Whale Magnet Trader
The Patient Hunter. Waits for whales to commit to major liquidity sweeps. Targets 3-10% moves toward big liquidation clusters.
Timeframe 1h
Magnets 2-15%
Trades/Week 2-5
Port 8600
Launch Dashboard โ†’
๐ŸŸ
Minnow Trader
The Agile Opportunist. Darts in front of whale momentum for quick scalps. Targets 0.5-2% moves, riding the waves whales create.
Timeframe 5m
Magnets 0.3-3%
Trades/Day 10-20
Port 8610
Launch Dashboard โ†’

๐Ÿง  Coordination Brain

The strategies don't operate in isolation โ€” they talk to each other:

Direction alignment Pause on stop-loss Cross-strategy alerts Conflict prevention

๐Ÿ“Š Capital Allocation

Each strategy manages its own paper treasury with coordinated risk:

Strategy Allocation Position Size Max Leverage Stop Loss
๐Ÿ‹ Whale $60,000 (60%) 45% per trade 3x 2%
๐ŸŸ Minnow $40,000 (40%) 12% per trade 2x 0.8%

๐Ÿ”— API Endpoints

Both strategies expose the same UDC-compliant API surface:

Endpoint Description
/healthUDC health payload with proof + steward
/api/strategy/infoCurrent strategy config (whale/minnow)
/api/whale/updatePOST new candle batch
/api/activity/snapshotCurrent market state for all symbols
/api/ai/thinkingReal-time AI analysis and decisions
/api/treasury/snapshotPaper treasury status
/api/positions/liveCurrent open positions
/api/signals/entryEntry signal for symbol
/api/signals/exitExit signal for symbol

๐Ÿš€ Quick Start

Run your own bridge to feed live data into either strategy:

git clone https://github.com/fullpotential-ai/whaletrack-magnetic-trader.git
cd whaletrack-magnetic-trader
pip3 install -r bridge/requirements.txt

# For Whale (1h candles, big moves)
export BRIDGE_TIMEFRAME=1h
export BRIDGE_CANDLES=500
export WHALETRACK_API_BASE=https://fullpotential.ai/dashboards/whale/api

# For Minnow (5m candles, quick scalps)
export BRIDGE_TIMEFRAME=5m
export BRIDGE_CANDLES=100
export WHALETRACK_API_BASE=https://fullpotential.ai/dashboards/minnow/api

python3 bridge/bridge_service.py