Files
trading-bot/scripts/verify_last_week.py
T

9 lines
266 B
Python

import pandas as pd
import yfinance as yf
from scripts.backtest import backtest_ticker
print("Running historical check for the last 5 trading days...")
for ticker in ["NFLX", "AMZN", "AAPL"]:
res = backtest_ticker(ticker, days=5, quiet=False)
print("="*60)