File size: 25,206 Bytes
4124dd5 | 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 | """
p170_backtest.py β P170 Signal Backtest Engine
================================================
Regenerates dated signals directly from price history using saved global model.
This is more accurate than the predictions parquet (which has no dates).
Usage:
python p170_backtest.py # full backtest
python p170_backtest.py --symbol RTNINDIA # single symbol
python p170_backtest.py --walk-forward # year by year
python p170_backtest.py --threshold-sweep # optimal confidence
python p170_backtest.py --min-confidence 0.45 # tighter filter
"""
from __future__ import annotations
import argparse
import json
import sys
from datetime import datetime
from pathlib import Path
from typing import Optional
import numpy as np
import pandas as pd
sys.path.insert(0, str(Path(__file__).parent))
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# CONFIG
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
BASE = Path(".")
GDIR = BASE / "data/lake/ml/p170/models/GLOBAL"
UNIVERSE_PATH = BASE / "data/lake/ml/p170/p170_signal_universe.csv"
OUT_DIR = BASE / "data/lake/ml/p170/backtest"
OUT_DIR.mkdir(parents=True, exist_ok=True)
HOLD_DAYS = 3 # exit after N trading days
STOP_LOSS_PCT = 0.015 # -1.5%
TARGET_PCT = 0.030 # +3.0% (2:1 R:R)
COST_PCT = 0.002 # 0.2% round-trip
INITIAL_CAP = 100_000
# ETF patterns to exclude
ETF_PAT = {"LIQUID","GILT","GOLD","SILVER","ETF","BEES","GSEC","CASH",
"BBETF","NIFTY","LOWVOL","QUALITY","SENSEX","MOM","GROWW","SETF"}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LOAD GLOBAL MODEL (cached)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_model_cache: dict = {}
def load_global_model() -> tuple:
"""Load scaler, feature cols and base models. Cached after first call."""
if _model_cache:
return (_model_cache["scaler"], _model_cache["fcols"],
_model_cache["models"])
import joblib
scaler = joblib.load(GDIR / "scaler.joblib")
fcols = joblib.load(GDIR / "feature_cols.joblib")
models = {}
for name in ["xgboost","lightgbm","catboost","random_forest","extra_trees"]:
p = GDIR / f"{name}.joblib"
if p.exists():
try:
models[name] = joblib.load(p)
except Exception:
pass
_model_cache.update({"scaler": scaler, "fcols": fcols, "models": models})
return scaler, fcols, models
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# GENERATE DATED SIGNALS FOR ONE SYMBOL
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def generate_signals(symbol: str) -> Optional[pd.DataFrame]:
"""
Run the global model over full price history for symbol.
Returns DataFrame with columns:
[date, close, pred_class, prob_down, prob_neutral, prob_up,
confidence, actual_class]
Returns None if data unavailable.
"""
from p170_max_system import load_candles, engineer_features
try:
scaler, fcols, models = load_global_model()
if not models:
return None
raw = load_candles(symbol)
if raw is None or len(raw) < 60:
return None
df = engineer_features(raw)
df = df.dropna(subset=fcols).reset_index(drop=True)
if len(df) < 30:
return None
X = df[fcols].values.astype("float32")
X_s = scaler.transform(X)
probas = np.mean(
[m.predict_proba(X_s) for m in models.values()], axis=0
)
preds = np.argmax(probas, axis=1)
conf = probas.max(axis=1)
out = pd.DataFrame({
"date": pd.to_datetime(df["date"].values),
"close": df["close"].values.astype(float),
"pred_class": preds.astype(int),
"prob_down": probas[:, 0],
"prob_neutral": probas[:, 1],
"prob_up": probas[:, 2],
"confidence": conf,
"actual_class": df["direction_class"].values.astype(int),
})
return out.sort_values("date").reset_index(drop=True)
except Exception as e:
return None
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SIMULATE TRADES
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def simulate_trades(
symbol: str,
signals_df: pd.DataFrame,
min_confidence: float = 0.42,
date_from: Optional[str] = None,
date_to: Optional[str] = None,
) -> list[dict]:
"""
Simulate trades from dated signals.
Entry: next close after signal day.
Exit: HOLD_DAYS later OR stop loss OR target.
"""
df = signals_df.copy()
# Date filter
if date_from:
df = df[df["date"] >= pd.Timestamp(date_from)]
if date_to:
df = df[df["date"] <= pd.Timestamp(date_to)]
# Filter: directional + above confidence
df = df[
(df["confidence"] >= min_confidence) &
(df["pred_class"] != 1)
].reset_index(drop=True)
if df.empty:
return []
trades = []
prices = signals_df.set_index("date")["close"].sort_index()
dates = prices.index.tolist()
for _, row in df.iterrows():
sig_date = row["date"]
direction = "BUY" if row["pred_class"] == 2 else "SELL"
conf = float(row["confidence"])
# Entry: next trading day after signal
future = [d for d in dates if d > sig_date]
if len(future) < 2:
continue
entry_date = future[0]
entry_price = float(prices[entry_date])
exit_price = entry_price
exit_reason = "MAX_HOLD"
hold = 0
for day_offset in range(1, HOLD_DAYS + 1):
if day_offset >= len(future):
break
curr_date = future[day_offset]
curr_price = float(prices[curr_date])
hold = day_offset
if direction == "BUY":
ret = (curr_price - entry_price) / entry_price
if ret <= -STOP_LOSS_PCT:
exit_price = entry_price * (1 - STOP_LOSS_PCT)
exit_reason = "STOP_LOSS"
break
if ret >= TARGET_PCT:
exit_price = entry_price * (1 + TARGET_PCT)
exit_reason = "TARGET"
break
exit_price = curr_price
else: # SELL / short
ret = (entry_price - curr_price) / entry_price
if ret <= -STOP_LOSS_PCT:
exit_price = entry_price * (1 + STOP_LOSS_PCT)
exit_reason = "STOP_LOSS"
break
if ret >= TARGET_PCT:
exit_price = entry_price * (1 - TARGET_PCT)
exit_reason = "TARGET"
break
exit_price = curr_price
gross = ((exit_price - entry_price) / entry_price
if direction == "BUY"
else (entry_price - exit_price) / entry_price)
net = gross - COST_PCT
trades.append({
"symbol": symbol,
"direction": direction,
"signal_date": str(sig_date.date()),
"entry_date": str(entry_date.date()),
"entry_price": round(entry_price, 2),
"exit_price": round(exit_price, 2),
"exit_reason": exit_reason,
"hold_days": hold,
"confidence": round(conf, 4),
"gross_return_pct": round(gross * 100, 3),
"net_return_pct": round(net * 100, 3),
})
return trades
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# METRICS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def compute_metrics(trades: list[dict]) -> dict:
if not trades:
return {"trade_count": 0, "win_rate_pct": 0, "total_return_pct": 0,
"sharpe": 0, "max_drawdown_pct": 0, "profit_factor": 0,
"avg_trade_return_pct": 0}
rets = [t["net_return_pct"] for t in trades]
# Fixed position sizing: each trade uses CAPITAL_PER_TRADE fraction
# Equity grows/shrinks by the P&L of each trade, not full compounding
POSITION_SIZE = INITIAL_CAP * 0.05 # 5% per trade
equity = [INITIAL_CAP]
for r in rets:
pnl = POSITION_SIZE * (r / 100)
equity.append(equity[-1] + pnl)
eq_s = pd.Series(equity)
dd = eq_s / eq_s.cummax() - 1
max_dd = float(dd.min() * 100)
wins = [r for r in rets if r > 0]
losses = [r for r in rets if r <= 0]
win_r = len(wins) / len(rets) * 100
gw = sum(wins)
gl = abs(sum(losses))
pf = gw / gl if gl > 0 else (gw if gw > 0 else 0)
s = pd.Series(rets) / 100
sharpe = float(s.mean() / s.std() * np.sqrt(252)) if s.std() > 0 else 0
return {
"trade_count": len(trades),
"win_rate_pct": round(win_r, 2),
"total_return_pct": round((equity[-1] / INITIAL_CAP - 1) * 100, 2),
"final_equity": round(equity[-1], 2),
"sharpe": round(sharpe, 3),
"max_drawdown_pct": round(max_dd, 2),
"profit_factor": round(pf, 3),
"avg_trade_return_pct": round(float(np.mean(rets)), 3),
"avg_hold_days": round(np.mean([t.get("hold_days", 3) for t in trades]), 1),
"stop_exits": sum(1 for t in trades if t["exit_reason"] == "STOP_LOSS"),
"target_exits": sum(1 for t in trades if t["exit_reason"] == "TARGET"),
"hold_exits": sum(1 for t in trades if t["exit_reason"] == "MAX_HOLD"),
"buy_trades": sum(1 for t in trades if t["direction"] == "BUY"),
"sell_trades": sum(1 for t in trades if t["direction"] == "SELL"),
}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# FULL BACKTEST
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def run_backtest(
min_accuracy: float = 0.55,
min_confidence: float = 0.42,
symbol: Optional[str] = None,
date_from: Optional[str] = None,
date_to: Optional[str] = None,
verbose: bool = True,
top_n: Optional[int] = None,
) -> dict:
t0 = datetime.now()
# Load universe
if not UNIVERSE_PATH.exists():
print("ERROR: Signal universe not found. Run p170_max_system.py first.")
return {}
universe = pd.read_csv(UNIVERSE_PATH)
qualifying = universe[universe["accuracy"] >= min_accuracy]["symbol"].tolist()
# Filter ETFs
qualifying = [s for s in qualifying
if not any(x in s.upper() for x in ETF_PAT)]
if symbol:
qualifying = [s for s in qualifying if s.upper() == symbol.upper()]
if not qualifying:
# Allow symbol even if not in universe
qualifying = [symbol.upper()]
if top_n:
qualifying = qualifying[:top_n]
if verbose:
print(f"\n{'='*60}")
print(f" P170 BACKTEST ENGINE")
print(f" {len(qualifying)} symbols | "
f"min_acc={min_accuracy} conf>={min_confidence}")
if date_from or date_to:
print(f" Period: {date_from or 'all'} β {date_to or 'all'}")
print(f"{'='*60}")
print(f" Hold:{HOLD_DAYS}d Stop:{STOP_LOSS_PCT*100:.1f}% "
f"Target:{TARGET_PCT*100:.1f}% Cost:{COST_PCT*100:.1f}%\n")
all_trades = []
sym_results = []
skipped = 0
for i, sym in enumerate(qualifying):
sigs = generate_signals(sym)
if sigs is None:
skipped += 1
continue
trades = simulate_trades(sym, sigs, min_confidence, date_from, date_to)
if not trades:
skipped += 1
continue
m = compute_metrics(trades)
sym_results.append({
"symbol": sym,
"n_trades": m["trade_count"],
"win_rate_pct": m["win_rate_pct"],
"total_return_pct": m["total_return_pct"],
"sharpe": m["sharpe"],
"max_drawdown_pct": m["max_drawdown_pct"],
"profit_factor": m["profit_factor"],
"avg_trade_ret": m["avg_trade_return_pct"],
"buy_trades": m["buy_trades"],
"sell_trades": m["sell_trades"],
})
all_trades.extend(trades)
if verbose and (i + 1) % 25 == 0:
done = len(sym_results)
avg_wr = np.mean([r["win_rate_pct"] for r in sym_results])
print(f" [{i+1}/{len(qualifying)}] "
f"{len(all_trades)} trades | "
f"avg win rate={avg_wr:.1f}%")
if not all_trades:
if verbose:
print(" No trades generated.")
return {}
overall = compute_metrics(all_trades)
sym_df = pd.DataFrame(sym_results).sort_values("sharpe", ascending=False)
buy_trades = [t for t in all_trades if t["direction"] == "BUY"]
sell_trades = [t for t in all_trades if t["direction"] == "SELL"]
buy_m = compute_metrics(buy_trades)
sell_m = compute_metrics(sell_trades)
elapsed = (datetime.now() - t0).total_seconds()
if verbose:
print(f"\n{'='*60}")
print(f" RESULTS ({len(all_trades):,} trades, "
f"{len(sym_results)} symbols, {skipped} skipped)")
print(f"{'='*60}")
print(f" Win rate: {overall['win_rate_pct']:.1f}%")
print(f" Total return: {overall['total_return_pct']:.2f}%")
print(f" Sharpe: {overall['sharpe']:.3f}")
print(f" Max drawdown: {overall['max_drawdown_pct']:.2f}%")
print(f" Profit factor: {overall['profit_factor']:.3f}")
print(f" Avg trade: {overall['avg_trade_return_pct']:.3f}%")
print(f" Stop/Target/Hold: "
f"{overall['stop_exits']}/"
f"{overall['target_exits']}/"
f"{overall['hold_exits']}")
print(f"\n BUY {len(buy_trades):5,} trades | "
f"win={buy_m['win_rate_pct']:.1f}% | "
f"ret={buy_m['total_return_pct']:.2f}% | "
f"pf={buy_m['profit_factor']:.3f}")
print(f" SELL {len(sell_trades):5,} trades | "
f"win={sell_m['win_rate_pct']:.1f}% | "
f"ret={sell_m['total_return_pct']:.2f}% | "
f"pf={sell_m['profit_factor']:.3f}")
print(f"\n Top 15 by Sharpe:")
cols = ["symbol","n_trades","win_rate_pct","total_return_pct",
"sharpe","max_drawdown_pct","profit_factor"]
print(sym_df[cols].head(15).to_string(index=False))
print(f"\n Bottom 10:")
print(sym_df[cols].tail(10).to_string(index=False))
# Go/No-Go
checks = {
"Win rate > 52%": overall["win_rate_pct"] > 52,
"Sharpe > 1.0": overall["sharpe"] > 1.0,
"Max DD < 20%": overall["max_drawdown_pct"] > -20,
"Profit factor > 1.2": overall["profit_factor"] > 1.2,
"Avg trade > 0.1%": overall["avg_trade_return_pct"] > 0.1,
}
all_pass = all(checks.values())
print(f"\n{'='*60}")
print(f" GO / NO-GO ASSESSMENT")
print(f"{'='*60}")
for check, passed in checks.items():
print(f" {'β' if passed else 'β'} {check}")
verdict = "β READY FOR PAPER TRADING" if all_pass else "β NOT READY β tune first"
print(f"\n {verdict}")
print(f" Elapsed: {elapsed:.1f}s")
print(f"{'='*60}\n")
# Save
ts = datetime.now().strftime("%Y%m%d_%H%M%S")
pd.DataFrame(all_trades).to_csv(OUT_DIR / f"trades_{ts}.csv", index=False)
sym_df.to_csv(OUT_DIR / f"symbol_results_{ts}.csv", index=False)
summary = {
"timestamp": datetime.now().isoformat(),
"config": {
"min_accuracy": min_accuracy,
"min_confidence": min_confidence,
"hold_days": HOLD_DAYS,
"stop_loss_pct": STOP_LOSS_PCT * 100,
"target_pct": TARGET_PCT * 100,
"cost_pct": COST_PCT * 100,
"date_from": date_from,
"date_to": date_to,
},
"overall": overall,
"buy_only": buy_m,
"sell_only": sell_m,
"n_symbols": len(sym_results),
"n_skipped": skipped,
"go_nogo": all_pass if verbose else None,
"top10": sym_df.head(10).to_dict("records"),
}
out_path = OUT_DIR / f"backtest_summary_{ts}.json"
out_path.write_text(json.dumps(summary, indent=2, default=str))
(OUT_DIR / "latest_backtest.json").write_text(
json.dumps(summary, indent=2, default=str))
if verbose:
print(f" Saved to {OUT_DIR}/")
return summary
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# WALK-FORWARD
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def run_walk_forward(
min_accuracy: float = 0.55,
min_confidence: float = 0.42,
top_n: int = 50,
) -> None:
print(f"\n{'#'*60}")
print(f" WALK-FORWARD β Year by Year (top {top_n} symbols)")
print(f"{'#'*60}\n")
years = list(range(2017, datetime.now().year + 1))
rows = []
for year in years:
d_from = f"{year}-01-01"
d_to = f"{year}-12-31"
print(f" {year}...", end=" ", flush=True)
r = run_backtest(
min_accuracy=min_accuracy,
min_confidence=min_confidence,
date_from=d_from,
date_to=d_to,
verbose=False,
top_n=top_n,
)
if not r:
print("no trades")
continue
m = r["overall"]
rows.append({
"year": year,
"trades": m["trade_count"],
"win_pct": m["win_rate_pct"],
"return": m["total_return_pct"],
"sharpe": m["sharpe"],
"max_dd": m["max_drawdown_pct"],
"pf": m["profit_factor"],
})
print(f"trades={m['trade_count']} win={m['win_rate_pct']:.1f}% "
f"ret={m['total_return_pct']:.2f}% sh={m['sharpe']:.3f} "
f"dd={m['max_drawdown_pct']:.2f}%")
if rows:
df = pd.DataFrame(rows)
print(f"\n{'='*60}")
print(" WALK-FORWARD SUMMARY")
print(f"{'='*60}")
print(df.to_string(index=False))
print(f"\n Avg Sharpe: {df['sharpe'].mean():.3f}")
print(f" Avg Win Rate: {df['win_pct'].mean():.1f}%")
print(f" Profitable years: {(df['return'] > 0).sum()}/{len(df)}")
print(f" Worst year: "
f"{df.loc[df['return'].idxmin(),'year']} "
f"({df['return'].min():.2f}%)")
df.to_csv(OUT_DIR / "walk_forward.csv", index=False)
print(f"\n Saved: {OUT_DIR}/walk_forward.csv")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# THRESHOLD SWEEP
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def threshold_sweep(min_accuracy: float = 0.55, top_n: int = 50) -> None:
print(f"\n{'='*60}")
print(f" THRESHOLD SWEEP (min_acc={min_accuracy}, top {top_n} symbols)")
print(f"{'='*60}")
print(f" {'Conf':>6} {'Trades':>7} {'Win%':>6} "
f"{'Ret%':>7} {'Sharpe':>7} {'DD%':>7} {'PF':>6}")
print(f" {'-'*56}")
best_sh = -999
best_conf = 0.42
for conf in [0.38, 0.40, 0.42, 0.44, 0.45, 0.47, 0.50, 0.52, 0.55]:
r = run_backtest(
min_accuracy=min_accuracy,
min_confidence=conf,
verbose=False,
top_n=top_n,
)
if not r:
print(f" {conf:.2f} no trades")
continue
m = r["overall"]
if m["trade_count"] < 20:
continue
mark = " β" if m["sharpe"] > best_sh else ""
if m["sharpe"] > best_sh:
best_sh = m["sharpe"]
best_conf = conf
print(f" {conf:.2f} {m['trade_count']:>7,} "
f"{m['win_rate_pct']:>5.1f}% "
f"{m['total_return_pct']:>6.2f}% "
f"{m['sharpe']:>7.3f} "
f"{m['max_drawdown_pct']:>6.2f}% "
f"{m['profit_factor']:>5.3f}{mark}")
print(f"\n Best: conf={best_conf:.2f} Sharpe={best_sh:.3f}")
print(f" Use: python run_daily_signals.py --min-confidence {best_conf:.2f}\n")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# CLI
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main():
ap = argparse.ArgumentParser(description="P170 Backtest Engine")
ap.add_argument("--symbol", type=str, default=None)
ap.add_argument("--min-accuracy", type=float, default=0.55)
ap.add_argument("--min-confidence", type=float, default=0.42)
ap.add_argument("--date-from", type=str, default=None)
ap.add_argument("--date-to", type=str, default=None)
ap.add_argument("--top-n", type=int, default=None)
ap.add_argument("--walk-forward", action="store_true")
ap.add_argument("--threshold-sweep", action="store_true")
args = ap.parse_args()
if args.walk_forward:
run_walk_forward(
min_accuracy=args.min_accuracy,
min_confidence=args.min_confidence,
top_n=args.top_n or 50,
)
elif args.threshold_sweep:
threshold_sweep(
min_accuracy=args.min_accuracy,
top_n=args.top_n or 50,
)
else:
run_backtest(
min_accuracy=args.min_accuracy,
min_confidence=args.min_confidence,
symbol=args.symbol,
date_from=args.date_from,
date_to=args.date_to,
top_n=args.top_n,
verbose=True,
)
if __name__ == "__main__":
main()
|