File size: 8,678 Bytes
2bbc43c | 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 | #!/usr/bin/env python3
"""Extract sliding windows from real tick data with lookahead crash labels.
For each window of 200 ticks, the label is:
1 (crash) if the mid-price drops ≥ threshold% within the next lookahead_ms
0 (normal) otherwise
This gives us REAL labeled training data — no synthetic anomalies.
Usage:
python scripts/extract_windows.py --data data/parquet/BTCUSDT_2021-05-19.parquet --out data/windows/
python scripts/extract_windows.py --data data/parquet/BTCUSDT_2024-01-15.parquet --out data/windows/ --label normal
"""
import argparse
import logging
import sys
from pathlib import Path
import numpy as np
import pandas as pd
ML_DIR = Path(__file__).resolve().parent.parent / "ml"
sys.path.insert(0, str(ML_DIR))
PROJECT_ROOT = Path(__file__).resolve().parent.parent
sys.path.insert(0, str(PROJECT_ROOT))
from flash_crash_watchdog.data.historical_loader import df_to_ticks, load_parquet
from flash_crash_watchdog.features import FEATURE_NAMES, FeatureExtractor
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(message)s")
logger = logging.getLogger(__name__)
# Features used by the TCN (F1-F4, 17 features)
TCN_FEATURES = FEATURE_NAMES[:17]
WINDOW_SIZE = 200 # ticks per window (~20 seconds at 10 ticks/sec)
STRIDE = 10 # sliding window stride (overlap = 190 ticks)
LOOKAHEAD_MS = 5_000 # label = crash if price drops ≥ threshold within next 5 seconds
CRASH_THRESHOLD_PCT = 2.0 # 2% drop = crash
def extract_features_from_df(df: pd.DataFrame, max_ticks: int = 0) -> tuple[np.ndarray, np.ndarray]:
"""Extract features + mid-prices from a DataFrame.
Returns:
features: shape (N, 17) — feature vector per tick
mid_prices: shape (N,) — mid-price per tick (for labeling)
"""
if max_ticks > 0 and len(df) > max_ticks:
indices = np.linspace(0, len(df) - 1, max_ticks, dtype=int)
df = df.iloc[indices].copy()
logger.info("Sampled to %d ticks", len(df))
extractor = FeatureExtractor()
features_list = []
mid_prices = []
for i, tick in enumerate(df_to_ticks(df, symbol="EXTRACT")):
if i % 100000 == 0:
logger.info(" Extracting features: %d/%d", i, len(df))
features = extractor.extract(tick)
features_list.append([features.get(f, 0.0) for f in TCN_FEATURES])
mid_prices.append(tick.book.mid_price or 0.0)
features = np.array(features_list, dtype=np.float32)
mid_prices = np.array(mid_prices, dtype=np.float64)
features = np.nan_to_num(features, nan=0.0, posinf=0.0, neginf=0.0)
return features, mid_prices
def label_windows(
features: np.ndarray,
mid_prices: np.ndarray,
window_size: int = WINDOW_SIZE,
stride: int = STRIDE,
lookahead_ms: int = LOOKAHEAD_MS,
crash_threshold: float = CRASH_THRESHOLD_PCT,
) -> tuple[np.ndarray, np.ndarray]:
"""Build sliding windows with lookahead crash labels.
For each window starting at index i:
- Window: features[i : i+window_size]
- Label: 1 if mid_price drops ≥ crash_threshold% within the next
lookahead_ms after the window ends, else 0
Returns:
windows: shape (N, window_size, 17)
labels: shape (N,)
"""
n = len(features)
n_windows = (n - window_size) // stride
logger.info("Building %d windows (size=%d, stride=%d)...", n_windows, window_size, stride)
# First, find all crash timestamps (where price drops ≥ threshold in lookahead window)
# We need timestamps to compute lookahead, but our features don't have them directly.
# Instead, we use the mid_price array and look ahead K ticks.
# At ~10 ticks/sec, 5000ms lookahead ≈ 50 ticks ahead
lookahead_ticks = max(1, lookahead_ms // 100) # approximate
windows = []
labels = []
n_positive = 0
n_negative = 0
for i in range(0, n - window_size - lookahead_ticks, stride):
# Extract window
window = features[i : i + window_size]
windows.append(window)
# Label: does the price drop ≥ threshold% within the next lookahead_ticks?
current_price = mid_prices[i + window_size - 1]
future_prices = mid_prices[i + window_size : i + window_size + lookahead_ticks]
if current_price > 0 and len(future_prices) > 0:
min_future = np.min(future_prices)
drop_pct = (current_price - min_future) / current_price * 100
label = 1 if drop_pct >= crash_threshold else 0
else:
label = 0
labels.append(label)
if label == 1:
n_positive += 1
else:
n_negative += 1
windows = np.array(windows, dtype=np.float32)
labels = np.array(labels, dtype=np.int32)
logger.info("Windows: %d total | %d positive (crash) | %d negative (normal)",
len(windows), n_positive, n_negative)
logger.info("Positive rate: %.4f%%", n_positive / max(1, len(windows)) * 100)
return windows, labels
def balance_windows(windows: np.ndarray, labels: np.ndarray, max_ratio: float = 5.0) -> tuple[np.ndarray, np.ndarray]:
"""Balance positive/negative windows by subsampling negatives.
Keeps all positives. Subsamples negatives to at most max_ratio × positives.
"""
n_pos = np.sum(labels == 1)
n_neg = np.sum(labels == 0)
if n_pos == 0:
logger.warning("No positive windows found — cannot balance. Returning all negatives.")
return windows, labels
max_neg = int(n_pos * max_ratio)
if n_neg <= max_neg:
logger.info("Already balanced enough (pos=%d, neg=%d). No subsampling needed.", n_pos, n_neg)
return windows, labels
# Subsample negatives
neg_indices = np.where(labels == 0)[0]
pos_indices = np.where(labels == 1)[0]
selected_neg = np.random.choice(neg_indices, size=max_neg, replace=False)
all_indices = np.concatenate([pos_indices, selected_neg])
np.random.shuffle(all_indices)
balanced_windows = windows[all_indices]
balanced_labels = labels[all_indices]
logger.info("Balanced: %d pos + %d neg = %d total (ratio %.1f:1)",
n_pos, max_neg, len(balanced_windows), max_ratio)
return balanced_windows, balanced_labels
def main() -> int:
parser = argparse.ArgumentParser(description="Extract sliding windows with crash labels")
parser.add_argument("--data", required=True, help="Parquet file")
parser.add_argument("--out", default="data/windows/", help="Output directory")
parser.add_argument("--window-size", type=int, default=WINDOW_SIZE)
parser.add_argument("--stride", type=int, default=STRIDE)
parser.add_argument("--lookahead-ms", type=int, default=LOOKAHEAD_MS)
parser.add_argument("--crash-threshold", type=float, default=CRASH_THRESHOLD_PCT)
parser.add_argument("--max-ticks", type=int, default=500_000,
help="Max ticks to process (0 = all)")
parser.add_argument("--balance-ratio", type=float, default=5.0,
help="Max neg:pos ratio (subsampling)")
parser.add_argument("--name", default=None,
help="Output filename (default: based on input)")
args = parser.parse_args()
# Load data
df = load_parquet(args.data)
logger.info("Loaded %d ticks from %s", len(df), args.data)
# Extract features
features, mid_prices = extract_features_from_df(df, max_ticks=args.max_ticks)
logger.info("Feature matrix: %s", features.shape)
# Build windows with labels
windows, labels = label_windows(
features, mid_prices,
window_size=args.window_size,
stride=args.stride,
lookahead_ms=args.lookahead_ms,
crash_threshold=args.crash_threshold,
)
# Balance
windows, labels = balance_windows(windows, labels, max_ratio=args.balance_ratio)
# Save
out_dir = Path(args.out)
out_dir.mkdir(parents=True, exist_ok=True)
if args.name:
out_path = out_dir / f"{args.name}.npz"
else:
stem = Path(args.data).stem
out_path = out_dir / f"{stem}_windows.npz"
np.savez_compressed(
out_path,
windows=windows,
labels=labels,
feature_names=np.array(TCN_FEATURES),
config=np.array({
"window_size": args.window_size,
"stride": args.stride,
"lookahead_ms": args.lookahead_ms,
"crash_threshold": args.crash_threshold,
}),
)
logger.info("Saved %d windows to %s (%.1f MB)",
len(windows), out_path, out_path.stat().st_size / 1e6)
return 0
if __name__ == "__main__":
raise SystemExit(main())
|