Generate IPO reports and TradingView watchlists from recent IPOs.
Generates IPO reports and TradingView watchlists from recent IPOs.
/plugin marketplace add gdanov/ipo-tracker-plugin/plugin install ipo-tracker-plugin@ipo-tracker-marketplaceGenerate IPO reports and TradingView watchlists from recent IPOs.
When invoked, run the IPO tracker script to fetch recent IPO data from Yahoo Finance, enrich it with market data using yfinance, and generate output files.
Run the Python script located at scripts/ipo_report.py in this plugin directory:
python scripts/ipo_report.py [OPTIONS]
--months N - Look back N months for IPOs (default: 1)--format FORMAT - Output format: all, watchlist, report, or csv (default: all)The script generates:
ipo_watchlist.txt - TradingView-compatible watchlist (EXCHANGE:SYMBOL format)ipo_report.txt - Human-readable report with enriched dataipo_data.csv - Full CSV export of all IPO dataTo get the last 3 months of IPOs:
python scripts/ipo_report.py --months 3
To generate only the TradingView watchlist:
python scripts/ipo_report.py --format watchlist
After running, report the generated files and their contents to the user. If the user wants to import the watchlist into TradingView, explain that they can use the Import feature in TradingView's watchlist panel with the generated ipo_watchlist.txt file.