File size: 11,690 Bytes
fc115d5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | """
Whale Pattern Predictor
Real-time signal generator that uses the trained whale pattern models
to produce trading signals from recent whale wallet activity.
Designed to be called from the main trading loop via WhaleTracker.
"""
import logging
import time
from pathlib import Path
from typing import Dict, List, Optional
import numpy as np
import pandas as pd
from src.features.whale_wallet_collector import WhaleWalletCollector, WHALE_DATA_DIR
from src.features.whale_wallet_registry import get_wallets_by_chain, get_wallet_weight, get_tier_weight
from src.models.whale_pattern_learner import WhalePatternLearner
logger = logging.getLogger(__name__)
class WhalePatternPredictor:
"""
Real-time whale pattern signal generator.
Workflow:
1. Load trained models for each chain
2. On each call, fetch recent wallet data (from cache)
3. Compute flow features
4. Run prediction
5. Return aggregated signal
"""
# How often to refresh wallet data from the blockchain (seconds)
COLLECTION_INTERVAL = 3600 # 1 hour
# Cache TTL for predictions (avoid recomputing every iteration)
PREDICTION_CACHE_TTL = 300 # 5 minutes
def __init__(self):
self.learners: Dict[str, WhalePatternLearner] = {}
self.collector = WhaleWalletCollector()
self.last_collection_time = 0
self.prediction_cache = {}
self.prediction_cache_time = 0
# Wallet accuracy weights (computed from trained models)
self.wallet_accuracy: Dict[str, Dict[str, float]] = {} # chain -> {wallet_idx: accuracy}
# Asset-to-chain mapping
self.asset_chain_map = {
"ETHUSDT": "ETH",
"SOLUSDT": "SOL",
"XRPUSDT": "XRP",
"BTCUSDT": "ETH", # BTC uses ETH whale signals as proxy
}
# Load models
self._load_models()
# Compute accuracy weights from loaded models
self._compute_wallet_accuracy_weights()
def _load_models(self):
"""Load trained whale pattern models for each chain."""
for chain in ["ETH", "SOL", "XRP"]:
learner = WhalePatternLearner(chain)
if learner.load_model():
self.learners[chain] = learner
logger.info(f"π Whale pattern model loaded for {chain}")
else:
logger.warning(
f"β οΈ No whale pattern model for {chain} β "
f"run train_whale_patterns.py first"
)
def _maybe_collect(self):
"""Collect new wallet data if enough time has passed."""
now = time.time()
if now - self.last_collection_time < self.COLLECTION_INTERVAL:
return
try:
# Massive synchronous scraping here locks up the API server (1000s of requests).
# Wallets should be collected async or via background cron, NOT in the prediction path.
# We will rely entirely on the local CSV caches that the background collector creates.
self.last_collection_time = now
# logger.info("π Whale wallet data refreshed (Skipped synchronous API blocking)")
except Exception as e:
logger.error(f"Whale collection error: {e}")
def _compute_wallet_accuracy_weights(self):
"""
Compute wallet weights using tier-based system + historical hit rates.
Tier System (baseline):
- Tier 1 (Elite): 3.0x weight (>60% hit rate)
- Tier 2 (Strong): 1.5x weight (55-60% hit rate)
- Tier 3 (Experimental): 0.5x weight (<55% hit rate)
Historical hit rates can further adjust the tier weight.
"""
for chain, learner in self.learners.items():
try:
# Get active wallets for this chain
chain_wallets = get_wallets_by_chain(chain, active_only=True)
if not chain_wallets:
continue
# Load wallet transaction data
wallets = learner._load_wallet_data()
if not wallets:
continue
accuracy = {}
# Assign tier-based weights to each wallet
for w_idx, wallet_obj in enumerate(chain_wallets):
# Get tier-based baseline weight
tier_weight = get_tier_weight(wallet_obj.tier)
# Try to refine with historical hit rate if available
impact = getattr(learner, '_cached_impact_features', {})
if not impact:
# Try to compute from stored data
price_data = learner._fetch_price_data(days=30)
if price_data is not None and not price_data.empty:
# Ensure index is DatetimeIndex before resampling
if not isinstance(price_data.index, pd.DatetimeIndex):
logger.warning(f"Price data index is not DatetimeIndex, skipping impact features for {chain}")
continue
price_hourly = price_data['close'].resample('1h').last().dropna()
# Remove timezone if present
if hasattr(price_hourly.index, 'tz') and price_hourly.index.tz is not None:
price_hourly.index = price_hourly.index.tz_convert(None)
# Verify the index is still DatetimeIndex after processing
if not isinstance(price_hourly.index, pd.DatetimeIndex):
logger.warning(f"Resampled price data lost DatetimeIndex for {chain}, skipping impact features")
continue
impact = learner._compute_price_impact_features(wallets, price_hourly)
# Refine tier weight with historical hit rate if available
hit_rate_key = f"w{w_idx}_hit_rate"
if impact and hit_rate_key in impact:
hr = impact[hit_rate_key]
# Adjust tier weight by Β±20% based on recent performance
# Hit rate > 60% β boost, < 50% β reduce
performance_mult = 1.0 + (hr - 0.55) * 0.4 # Β±20% adjustment
final_weight = tier_weight * performance_mult
else:
final_weight = tier_weight
# Clip to reasonable range
final_weight = float(np.clip(final_weight, 0.3, 3.5))
accuracy[f"w{w_idx}"] = final_weight
self.wallet_accuracy[chain] = accuracy
logger.info(
f"π― Wallet weights for {chain}: "
f"{', '.join(f'{k}={v:.2f}x' for k, v in accuracy.items())}"
)
except Exception as e:
logger.warning(f"Wallet accuracy computation failed for {chain}: {e}")
self.wallet_accuracy[chain] = {}
def get_signal(self, symbol: str = "BTCUSDT") -> Dict:
"""
Get whale pattern signal for a trading symbol.
Args:
symbol: Trading pair (e.g., "ETHUSDT")
Returns:
Dict with:
- signal: float from -1 to +1
- confidence: float from 0 to 1
- chain: which chain was used
- status: ok/no_model/error
"""
# Check prediction cache
now = time.time()
cache_key = symbol
if cache_key in self.prediction_cache:
cached_time, cached_result = self.prediction_cache[cache_key]
if now - cached_time < self.PREDICTION_CACHE_TTL:
return cached_result
# Maybe collect new data
self._maybe_collect()
# Determine chain
chain = self.asset_chain_map.get(symbol, "ETH")
# Check if we have a model
if chain not in self.learners:
result = {
"signal": 0.0,
"confidence": 0.0,
"chain": chain,
"status": "no_model",
}
self.prediction_cache[cache_key] = (now, result)
return result
learner = self.learners[chain]
try:
# Load cached wallet data
wallets = learner._load_wallet_data()
if not wallets:
result = {
"signal": 0.0,
"confidence": 0.0,
"chain": chain,
"status": "no_data",
}
self.prediction_cache[cache_key] = (now, result)
return result
# Convert to hourly flow features
hourly = learner._transactions_to_hourly(wallets)
if hourly.empty or len(hourly) < 2:
result = {
"signal": 0.0,
"confidence": 0.0,
"chain": chain,
"status": "insufficient_data",
}
self.prediction_cache[cache_key] = (now, result)
return result
# Predict
prediction = learner.predict(hourly)
raw_signal = prediction.get("signal", 0.0)
raw_confidence = prediction.get("confidence", 0.0)
# Apply wallet accuracy weighting
# If accurate wallets drove this signal, boost it; if random wallets, dampen it
accuracy_weights = self.wallet_accuracy.get(chain, {})
if accuracy_weights and raw_signal != 0:
# Compute average accuracy multiplier across tracked wallets
weights_list = list(accuracy_weights.values())
avg_accuracy_mult = sum(weights_list) / len(weights_list) if weights_list else 1.0
# Apply: accurate wallets (>1.0x) boost the signal
adjusted_signal = float(np.clip(raw_signal * avg_accuracy_mult, -1.0, 1.0))
adjusted_confidence = min(raw_confidence * min(avg_accuracy_mult, 1.5), 1.0)
else:
adjusted_signal = raw_signal
adjusted_confidence = raw_confidence
result = {
"signal": adjusted_signal,
"confidence": adjusted_confidence,
"chain": chain,
"status": prediction.get("status", "unknown"),
"n_wallets": len(wallets),
"n_hours": len(hourly),
"raw_signal": raw_signal,
"accuracy_multiplier": avg_accuracy_mult if accuracy_weights else 1.0,
}
self.prediction_cache[cache_key] = (now, result)
logger.info(
f"π Whale pattern signal for {symbol}: "
f"signal={result['signal']:.3f}, "
f"confidence={result['confidence']:.3f}"
)
return result
except Exception as e:
logger.error(f"Whale pattern prediction error: {e}")
result = {
"signal": 0.0,
"confidence": 0.0,
"chain": chain,
"status": f"error: {e}",
}
self.prediction_cache[cache_key] = (now, result)
return result
def get_all_signals(self) -> Dict[str, Dict]:
"""Get whale pattern signals for all tracked assets."""
results = {}
for symbol in ["ETHUSDT", "SOLUSDT", "XRPUSDT", "BTCUSDT"]:
results[symbol] = self.get_signal(symbol)
return results
|