File size: 30,503 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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 | """
Whale Pattern Learner v2
Enhanced learning engine that analyzes per-wallet transaction impact on
price movements to generate predictive signals.
Algorithm:
1. Convert per-wallet transaction history into hourly flow time-series
2. Compute per-wallet price impact features (1h, 4h, 24h after large txns)
3. Add transaction size classification (large vs small)
4. Cross-correlate with OHLCV price data
5. Train GradientBoosting classifier to predict price direction
"""
import json
import logging
import os
import pickle
from datetime import datetime, timedelta
from pathlib import Path
from typing import Dict, List, Optional, Tuple
import numpy as np
import pandas as pd
logger = logging.getLogger(__name__)
MODEL_DIR = Path("data/models/whale_patterns")
WHALE_DATA_DIR = Path("data/whale_wallets")
class WhalePatternLearner:
"""
Learns whale trading patterns and their correlation with price.
v2 features:
- Per-wallet flow features (not just aggregate)
- Per-transaction price impact analysis
- Transaction size classification (large vs small)
- GradientBoosting with multi-horizon targets
"""
def __init__(self, chain: str):
self.chain = chain.upper()
MODEL_DIR.mkdir(parents=True, exist_ok=True)
self.model = None
self.model_path = MODEL_DIR / f"{self.chain.lower()}_whale_model.pkl"
self.feature_names = []
def _load_wallet_data(self) -> List[Dict]:
"""Load all cached wallet data for this chain."""
chain_dir = WHALE_DATA_DIR / self.chain.lower()
wallets = []
if chain_dir.exists():
for filepath in chain_dir.glob("*.json"):
try:
with open(filepath, "r") as f:
wallets.append(json.load(f))
except (json.JSONDecodeError, IOError):
pass
return wallets
# βββββββββββββββββββββββββββββββββββββββββββββ
# Feature Engineering
# βββββββββββββββββββββββββββββββββββββββββββββ
def _transactions_to_hourly(
self, wallets: List[Dict]
) -> pd.DataFrame:
"""
Convert all wallet transactions into an hourly flow time-series.
Includes aggregate features + per-wallet features +
transaction size classification.
"""
all_txns = []
for w_idx, w in enumerate(wallets):
wallet_label = w.get("label", f"wallet_{w_idx}")
for tx in w.get("transactions", []):
ts = tx.get("timestamp", 0)
if ts <= 0:
continue
value = tx.get("value", 0)
direction = tx.get("direction", "unknown")
context = tx.get("context", "unknown")
# Signed flow: positive = inflow, negative = outflow
signed_value = value if direction == "in" else -value
all_txns.append({
"timestamp": pd.Timestamp.utcfromtimestamp(ts),
"value": value,
"signed_value": signed_value,
"direction": direction,
"context": context,
"wallet_idx": w_idx,
"wallet_label": wallet_label,
})
if not all_txns:
return pd.DataFrame()
df = pd.DataFrame(all_txns)
df = df.set_index("timestamp").sort_index()
# ββ Aggregate flow features ββ
hourly = pd.DataFrame()
hourly["net_flow"] = df["signed_value"].resample("1h").sum().fillna(0)
hourly["tx_count"] = df["signed_value"].resample("1h").count().fillna(0)
hourly["avg_size"] = df["value"].resample("1h").mean().fillna(0)
hourly["inflow_count"] = (
df[df["direction"] == "in"]["value"]
.resample("1h").count()
.reindex(hourly.index, fill_value=0)
)
hourly["outflow_count"] = (
df[df["direction"] == "out"]["value"]
.resample("1h").count()
.reindex(hourly.index, fill_value=0)
)
total_count = hourly["inflow_count"] + hourly["outflow_count"]
hourly["direction_ratio"] = np.where(
total_count > 0,
hourly["inflow_count"] / total_count,
0.5,
)
# Rolling features
hourly["flow_24h"] = hourly["net_flow"].rolling(24, min_periods=1).sum()
hourly["flow_7d"] = hourly["net_flow"].rolling(168, min_periods=1).sum()
hourly["flow_acceleration"] = hourly["flow_24h"].diff(6).fillna(0)
# ββ Time-Decay Weighted Flow (Whale Velocity) ββ
# Recent whale moves are MUCH more predictive than older ones.
# Exponential decay: half-life = 6 hours β recent 2h have ~5x weight of 12h-old
decay_half_life = 6 # hours
decay_lambda = np.log(2) / decay_half_life
if len(hourly) > 1:
hours_ago = np.arange(len(hourly))[::-1].astype(float)
decay_weights = np.exp(-decay_lambda * hours_ago)
hourly["decay_weighted_flow"] = hourly["net_flow"] * decay_weights
hourly["decay_flow_cum"] = hourly["decay_weighted_flow"].rolling(24, min_periods=1).sum()
# Whale velocity: rate of change of time-decayed flow
hourly["whale_velocity"] = hourly["decay_flow_cum"].diff(3).fillna(0)
else:
hourly["decay_weighted_flow"] = hourly["net_flow"]
hourly["decay_flow_cum"] = hourly["net_flow"]
hourly["whale_velocity"] = 0
# ββ Transaction size classification ββ
if len(df) > 10:
value_75th = df["value"].quantile(0.75)
large_mask = df["value"] >= value_75th
hourly["large_tx_flow"] = (
df.loc[large_mask, "signed_value"]
.resample("1h").sum()
.reindex(hourly.index, fill_value=0)
)
hourly["large_tx_count"] = (
df.loc[large_mask, "value"]
.resample("1h").count()
.reindex(hourly.index, fill_value=0)
)
# Large tx ratio
hourly["large_tx_ratio"] = np.where(
hourly["tx_count"] > 0,
hourly["large_tx_count"] / hourly["tx_count"],
0,
)
else:
hourly["large_tx_flow"] = 0
hourly["large_tx_count"] = 0
hourly["large_tx_ratio"] = 0
# ββ Contextual Flow Features ββ
for ctx in ["exchange", "institution", "accumulator"]:
# Money sent TO ctx (bearish if exchange, bullish if cold storage/staking)
mask_out = (df["direction"] == "out") & (df["context"] == ctx)
hourly[f"to_{ctx}_flow"] = (
df.loc[mask_out, "value"]
.resample("1h").sum()
.reindex(hourly.index, fill_value=0)
)
# Money received FROM ctx
mask_in = (df["direction"] == "in") & (df["context"] == ctx)
hourly[f"from_{ctx}_flow"] = (
df.loc[mask_in, "value"]
.resample("1h").sum()
.reindex(hourly.index, fill_value=0)
)
# ββ Contextual Flow Ratio Features ββ
# Provide the ML model with the direct percentage splits (Exchange Dominance vs Accumulators)
total_ctx_flow = sum(hourly.get(f"to_{ctx}_flow", 0) for ctx in ["exchange", "institution", "accumulator"]) + 1e-9
hourly["exchange_dump_ratio"] = hourly.get("to_exchange_flow", 0) / total_ctx_flow
hourly["accumulator_hoard_ratio"] = hourly.get("to_accumulator_flow", 0) / total_ctx_flow
# ββ Per-wallet flow features (top 5 wallets) ββ
unique_wallets = sorted(df["wallet_idx"].unique())[:5]
for w_idx in unique_wallets:
w_df = df[df["wallet_idx"] == w_idx]
prefix = f"w{w_idx}"
hourly[f"{prefix}_flow"] = (
w_df["signed_value"].resample("1h").sum()
.reindex(hourly.index, fill_value=0)
)
hourly[f"{prefix}_count"] = (
w_df["value"].resample("1h").count()
.reindex(hourly.index, fill_value=0)
)
hourly[f"{prefix}_flow_24h"] = (
hourly[f"{prefix}_flow"].rolling(24, min_periods=1).sum()
)
# ββ Whale consensus ββ
# What % of wallets are flowing in the same direction?
if len(unique_wallets) > 1:
wallet_directions = []
for w_idx in unique_wallets:
col = f"w{w_idx}_flow_24h"
if col in hourly.columns:
wallet_directions.append(
np.sign(hourly[col]).fillna(0)
)
if wallet_directions:
direction_df = pd.concat(wallet_directions, axis=1)
# Consensus: fraction of wallets agreeing on direction
hourly["whale_consensus"] = (
direction_df.apply(
lambda row: abs(row.sum()) / max(len(row), 1),
axis=1
)
)
else:
hourly["whale_consensus"] = 0
else:
hourly["whale_consensus"] = 0
# ββ Time features (cyclical) ββ
hourly["hour_sin"] = np.sin(2 * np.pi * hourly.index.hour / 24)
hourly["hour_cos"] = np.cos(2 * np.pi * hourly.index.hour / 24)
hourly["dow_sin"] = np.sin(2 * np.pi * hourly.index.dayofweek / 7)
hourly["dow_cos"] = np.cos(2 * np.pi * hourly.index.dayofweek / 7)
return hourly
def _compute_price_impact_features(
self,
wallets: List[Dict],
price_hourly: pd.Series,
) -> Dict[str, float]:
"""
Compute per-wallet price impact statistics.
For each wallet's large transactions, measure what the price
did at +1h, +4h, +24h. This tells us which wallets are
predictive and in which direction.
Returns a dict of per-wallet impact stats to be used as
static features during training (added to every row).
"""
impact_features = {}
for w_idx, w in enumerate(wallets[:5]):
txns = w.get("transactions", [])
if len(txns) < 5:
continue
# Find large transactions (top 25%)
values = [tx.get("value", 0) for tx in txns]
if not values:
continue
threshold = np.percentile(values, 75)
impacts_1h = []
impacts_4h = []
impacts_24h = []
correct_predictions = 0
total_predictions = 0
for tx in txns:
value = tx.get("value", 0)
if value < threshold:
continue
ts = tx.get("timestamp", 0)
if ts <= 0:
continue
try:
tx_time = pd.Timestamp.utcfromtimestamp(ts)
if tx_time.tzinfo is not None:
tx_time = tx_time.tz_convert(None)
except Exception:
continue
direction = tx.get("direction", "unknown")
# Find price at transaction time and after
try:
# Find nearest price
idx = price_hourly.index.get_indexer(
[tx_time], method="nearest"
)[0]
if idx < 0 or idx >= len(price_hourly):
continue
price_at_tx = price_hourly.iloc[idx]
if price_at_tx <= 0:
continue
# Price change at +1h, +4h, +24h
for offset, impacts_list in [
(1, impacts_1h),
(4, impacts_4h),
(24, impacts_24h),
]:
future_idx = idx + offset
if future_idx < len(price_hourly):
pct_change = (
(price_hourly.iloc[future_idx] - price_at_tx)
/ price_at_tx
)
impacts_list.append(pct_change)
# Hit rate: did inflow precede price increase?
if idx + 4 < len(price_hourly):
price_4h = price_hourly.iloc[idx + 4]
price_went_up = price_4h > price_at_tx
total_predictions += 1
if direction == "in" and price_went_up:
correct_predictions += 1
elif direction == "out" and not price_went_up:
correct_predictions += 1
except Exception:
continue
prefix = f"w{w_idx}"
impact_features[f"{prefix}_impact_1h"] = (
float(np.mean(impacts_1h)) if impacts_1h else 0
)
impact_features[f"{prefix}_impact_4h"] = (
float(np.mean(impacts_4h)) if impacts_4h else 0
)
impact_features[f"{prefix}_impact_24h"] = (
float(np.mean(impacts_24h)) if impacts_24h else 0
)
impact_features[f"{prefix}_hit_rate"] = (
correct_predictions / max(total_predictions, 1)
)
impact_features[f"{prefix}_predictive"] = (
1.0 if impact_features[f"{prefix}_hit_rate"] > 0.55 else 0.0
)
return impact_features
# βββββββββββββββββββββββββββββββββββββββββββββ
# Price Data
# βββββββββββββββββββββββββββββββββββββββββββββ
def _fetch_price_data(self, days: int = 90) -> Optional[pd.DataFrame]:
"""Fetch OHLCV price data for the corresponding asset."""
try:
from src.data.multi_asset_fetcher import MultiAssetDataFetcher
fetcher = MultiAssetDataFetcher()
# Map chain to trading symbol
symbol_map = {
"ETH": "ETHUSDT",
"SOL": "SOLUSDT",
"XRP": "XRPUSDT",
}
symbol = symbol_map.get(self.chain, "BTCUSDT")
df = fetcher.fetch_asset(symbol, "1h", days=days)
if df is not None and not df.empty:
return df
except Exception as e:
logger.error(f"Failed to fetch price data: {e}")
return None
# βββββββββββββββββββββββββββββββββββββββββββββ
# Training Data Construction
# βββββββββββββββββββββββββββββββββββββββββββββ
def _build_training_data(
self,
hourly_flow: pd.DataFrame,
price_df: pd.DataFrame,
impact_features: Dict[str, float],
) -> Tuple[pd.DataFrame, pd.Series]:
"""
Merge whale flow features with price data and create targets.
Target: price direction in next 4 hours (+1 = up, -1 = down)
"""
# Ensure price_df has a proper datetime index
if "timestamp" in price_df.columns:
price_df = price_df.set_index("timestamp")
elif not isinstance(price_df.index, pd.DatetimeIndex):
price_df.index = pd.to_datetime(price_df.index)
price_df = price_df.sort_index()
# Strip timezone info from both to ensure matching
try:
if hasattr(price_df.index, 'tz') and price_df.index.tz is not None:
price_df.index = price_df.index.tz_convert(None)
except TypeError:
price_df.index = price_df.index.tz_localize(None)
try:
if hasattr(hourly_flow.index, 'tz') and hourly_flow.index.tz is not None:
hourly_flow.index = hourly_flow.index.tz_convert(None)
except TypeError:
hourly_flow.index = hourly_flow.index.tz_localize(None)
# Debug: show date ranges
logger.info(
f"π Whale flow range: {hourly_flow.index.min()} β {hourly_flow.index.max()}"
)
logger.info(
f"π Price data range: {price_df.index.min()} β {price_df.index.max()}"
)
# Resample price to hourly close
price_hourly = price_df["close"].resample("1h").last().ffill()
logger.info(f"π Price hourly: {len(price_hourly)} rows")
# Create target: price change 4h ahead
price_change_4h = price_hourly.pct_change(4).shift(-4)
# Filter whale flow to only the period covered by price data
overlap_start = max(hourly_flow.index.min(), price_hourly.index.min())
overlap_end = min(hourly_flow.index.max(), price_hourly.index.max())
logger.info(f"π Overlap period: {overlap_start} β {overlap_end}")
if overlap_start >= overlap_end:
logger.warning("No overlapping time period between whale flow and price data")
return pd.DataFrame(), pd.Series()
# Filter to overlap period
flow_overlap = hourly_flow.loc[overlap_start:overlap_end].copy()
logger.info(f"π Flow rows in overlap: {len(flow_overlap)}")
if flow_overlap.empty:
return pd.DataFrame(), pd.Series()
# Use merge_asof for robust join (nearest hour match)
flow_reset = flow_overlap.reset_index()
if flow_reset.columns[0] != "timestamp":
flow_reset = flow_reset.rename(
columns={flow_reset.columns[0]: "timestamp"}
)
price_reset = pd.DataFrame({
"timestamp": price_hourly.index,
"price": price_hourly.values,
"price_change_4h": price_change_4h.values,
})
merged = pd.merge_asof(
flow_reset.sort_values("timestamp"),
price_reset.sort_values("timestamp"),
on="timestamp",
direction="nearest",
tolerance=pd.Timedelta("1h"),
)
# Use per-wallet impact features to create weighted flow signals
# Instead of static features, weight each wallet's flow by its hit rate
if impact_features:
weighted_flow = pd.Series(0.0, index=merged.index)
for w_idx in range(5):
flow_col = f"w{w_idx}_flow"
hit_rate_key = f"w{w_idx}_hit_rate"
if flow_col in merged.columns and hit_rate_key in impact_features:
hit_rate = impact_features[hit_rate_key]
# Weight: center around 0.5 (no-info), scale by deviation
weight = (hit_rate - 0.5) * 2 # range: -1 to +1
weighted_flow += merged[flow_col].fillna(0) * weight
merged["weighted_smart_flow"] = weighted_flow
merged["weighted_smart_flow_24h"] = (
merged["weighted_smart_flow"].rolling(24, min_periods=1).sum()
)
# Fill NaN in flow features (sparse whale data is normal)
flow_cols = [
c for c in merged.columns
if c not in ["price", "price_change_4h", "timestamp"]
]
merged[flow_cols] = merged[flow_cols].fillna(0)
# Drop only rows missing price/target data
merged = merged.dropna(subset=["price", "price_change_4h"])
logger.info(f"π Merged rows after dropna: {len(merged)}")
if merged.empty:
return pd.DataFrame(), pd.Series()
# Target: +1 if price goes up, -1 if down
target = np.sign(merged["price_change_4h"])
# Features (exclude target, price, and timestamp)
feature_cols = [
c
for c in merged.columns
if c not in ["price", "price_change_4h", "timestamp"]
]
features = merged[feature_cols]
return features, target
# βββββββββββββββββββββββββββββββββββββββββββββ
# Training
# βββββββββββββββββββββββββββββββββββββββββββββ
def train(self, days: int = 90) -> bool:
"""
Train the whale pattern model.
1. Load wallet transaction data
2. Convert to hourly flow features
3. Fetch price data
4. Compute per-wallet price impact
5. Build training data
6. Train GradientBoosting + RandomForest ensemble
"""
logger.info(f"π§ Training whale pattern model for {self.chain}...")
# Step 1: Load wallet data
wallets = self._load_wallet_data()
if not wallets:
logger.warning(f"No wallet data for {self.chain}")
return False
total_txns = sum(len(w.get("transactions", [])) for w in wallets)
logger.info(f"π Loaded {len(wallets)} wallets, {total_txns} total txns")
if total_txns < 50:
logger.warning(
f"Not enough transactions ({total_txns}) for training. "
f"Need at least 50."
)
return False
# Step 2: Convert to hourly flow (with per-wallet features)
hourly = self._transactions_to_hourly(wallets)
if hourly.empty:
logger.warning("No hourly flow data generated")
return False
logger.info(
f"π Hourly flow: {len(hourly)} rows, "
f"{len(hourly.columns)} features"
)
# Step 3: Fetch price data
price_df = self._fetch_price_data(days=days)
if price_df is None or price_df.empty:
logger.warning("No price data available")
return False
# Step 4: Compute per-wallet price impact features
# Need price as hourly series for impact computation
_price = price_df.copy()
if "timestamp" in _price.columns:
_price = _price.set_index("timestamp")
if not isinstance(_price.index, pd.DatetimeIndex):
_price.index = pd.to_datetime(_price.index)
_price = _price.sort_index()
try:
if hasattr(_price.index, 'tz') and _price.index.tz is not None:
_price.index = _price.index.tz_convert(None)
except TypeError:
pass
price_hourly_series = _price["close"].resample("1h").last().ffill()
impact_features = self._compute_price_impact_features(
wallets, price_hourly_series
)
if impact_features:
logger.info(f"π Price impact features: {len(impact_features)}")
for k, v in impact_features.items():
if "hit_rate" in k:
logger.info(f" {k}: {v:.2%}")
# Step 5: Build training data
features, target = self._build_training_data(
hourly, price_df, impact_features
)
if features.empty:
logger.warning("No valid training samples after merge")
return False
logger.info(
f"π Training data: {len(features)} samples, "
f"{features.shape[1]} features"
)
# Step 6: Train model
try:
from sklearn.ensemble import (
GradientBoostingClassifier,
RandomForestClassifier,
VotingClassifier,
)
from sklearn.model_selection import cross_val_score
self.feature_names = features.columns.tolist()
# GradientBoosting β better at learning patterns
gb_model = GradientBoostingClassifier(
n_estimators=150,
max_depth=4,
learning_rate=0.1,
min_samples_leaf=10,
subsample=0.8,
random_state=42,
)
# RandomForest β robust baseline
rf_model = RandomForestClassifier(
n_estimators=100,
max_depth=6,
min_samples_leaf=10,
class_weight="balanced",
random_state=42,
n_jobs=-1,
)
# Ensemble via soft voting
model = VotingClassifier(
estimators=[
("gb", gb_model),
("rf", rf_model),
],
voting="soft",
weights=[0.6, 0.4], # GB weighted higher
)
# Cross-validate
if len(features) >= 20:
cv_folds = min(5, len(features) // 4)
if cv_folds >= 2:
scores = cross_val_score(
model, features, target,
cv=cv_folds, scoring="accuracy"
)
logger.info(
f"π CV Accuracy: {scores.mean():.3f} "
f"(+/- {scores.std():.3f})"
)
# Train on full data
model.fit(features, target)
self.model = model
# Save model
model_data = {
"model": model,
"feature_names": self.feature_names,
"chain": self.chain,
"trained_at": datetime.utcnow().isoformat(),
"n_samples": len(features),
"n_wallets": len(wallets),
"n_transactions": total_txns,
"n_features": features.shape[1],
"impact_features": impact_features,
"version": "v2",
}
with open(self.model_path, "wb") as f:
pickle.dump(model_data, f)
logger.info(
f"β
Whale pattern model saved: {self.model_path} "
f"({len(features)} samples, {features.shape[1]} features)"
)
# Feature importance from the GB model
try:
gb_fitted = model.named_estimators_["gb"]
if hasattr(gb_fitted, "feature_importances_"):
importances = dict(
zip(self.feature_names, gb_fitted.feature_importances_)
)
top_features = sorted(
importances.items(),
key=lambda x: x[1],
reverse=True,
)[:8]
logger.info("π Top features (GradientBoosting):")
for name, imp in top_features:
logger.info(f" {name}: {imp:.3f}")
except Exception:
pass
return True
except ImportError:
logger.error(
"sklearn not installed. Run: pip install scikit-learn"
)
return False
except Exception as e:
logger.error(f"Training failed: {e}")
import traceback
traceback.print_exc()
return False
def load_model(self) -> bool:
"""Load a previously trained model."""
if self.model_path.exists():
try:
with open(self.model_path, "rb") as f:
model_data = pickle.load(f)
self.model = model_data["model"]
self.feature_names = model_data.get("feature_names", [])
version = model_data.get("version", "v1")
logger.info(
f"β
Loaded whale pattern model: {self.chain} "
f"({version}, {model_data.get('n_samples', '?')} samples, "
f"{model_data.get('n_features', '?')} features)"
)
return True
except Exception as e:
logger.error(f"Failed to load model: {e}")
return False
def predict(self, hourly_flow: pd.DataFrame) -> Dict:
"""
Predict price direction from current whale flow features.
Args:
hourly_flow: DataFrame with whale flow features (last few rows)
Returns:
Dict with signal (-1 to +1) and confidence
"""
if self.model is None:
return {"signal": 0.0, "confidence": 0.0, "status": "no_model"}
try:
# Use only the feature columns the model was trained on
available = [c for c in self.feature_names if c in hourly_flow.columns]
if len(available) < len(self.feature_names) * 0.3:
return {
"signal": 0.0,
"confidence": 0.0,
"status": "missing_features",
}
# Fill missing features with 0
features = pd.DataFrame()
for col in self.feature_names:
if col in hourly_flow.columns:
features[col] = hourly_flow[col]
else:
features[col] = 0.0
# Use the last row (most recent)
latest = features.iloc[[-1]]
# Predict with probabilities
proba = self.model.predict_proba(latest)[0]
classes = self.model.classes_
# Convert to signal: weighted sum of class probabilities
signal = 0.0
for cls, prob in zip(classes, proba):
signal += cls * prob
# Confidence = max probability
confidence = float(max(proba))
return {
"signal": np.clip(signal, -1.0, 1.0),
"confidence": confidence,
"status": "ok",
"probabilities": dict(
zip([str(c) for c in classes], proba.tolist())
),
}
except Exception as e:
logger.error(f"Prediction failed: {e}")
return {"signal": 0.0, "confidence": 0.0, "status": f"error: {e}"}
|