用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/gauss314/skills --skill finviz命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | finviz |
| description | Scraper de Finviz: datos fundamentales, técnicos, insider trading, news y screener para acciones US. Sin API oficial. |
| license | MIT |
Scraper de Finviz que extrae datos fundamentales (P/E, EPS, PEG, márgenes, etc.), técnicos (RSI, MACD, SMA, ATR), insider trading, noticias y screener para acciones del mercado US.
Finviz no tiene API pública oficial. Este skill scrapea el HTML de las páginas públicas usando requests + BeautifulSoup.
pip install requests beautifulsoup4
| Script | Descripción |
|---|---|
| fetch_quote.py | Extrae perfil, fundamentales, técnicos, noticias e insider trading de un ticker. |
# Fetch completo de un ticker
python scripts/fetch_quote.py --ticker AAPL
# Solo fundamentales
python scripts/fetch_quote.py --ticker AAPL --fields fundamentals
# Output a archivo JSON
python scripts/fetch_quote.py --ticker MSFT --output msft_data.json
# Múltiples tickers
python scripts/fetch_quote.py --ticker AAPL,MSFT,GOOGL
# Headlines de noticias (default: 5)
python scripts/fetch_quote.py --ticker NVDA --news-headlines 10
| Campo | Descripción |
|---|---|
Market Cap | Capitalización de mercado |
P/E | Price-to-Earnings ratio |
Forward P/E | Forward P/E |
PEG | PEG ratio |
P/S | Price-to-Sales |
P/B | Price-to-Book |
EPS (ttm) | Earnings Per Share (trailing 12 months) |
EPS next Y | Estimated EPS next year |
Sales | Revenue |
Profit Margin | Profit margin |
ROE | Return on Equity |
ROA | Return on Assets |
Debt/Eq | Debt-to-Equity |
Dividend % | Dividend yield |
Insider Own | Insider ownership |
Instit Own | Institutional ownership |
Short Float | Short float percentage |
Target Price | Analyst target price |
Rating | Analyst rating |
| Campo | Descripción |
|---|---|
RSI (14) | Relative Strength Index |
SMA 20 | Simple Moving Average 20d |
SMA 50 | Simple Moving Average 50d |
SMA 200 | Simple Moving Average 200d |
MACD | MACD value |
ATR | Average True Range |
BB | Bollinger Bands midpoint |
Volatility | Volatility |
Beta | Beta |
skills/finviz/
├── SKILL.md # Este archivo
├── references/
│ └── QUOTE_REFERENCE.md # Referencia de campos extraídos
└── scripts/
└── fetch_quote.py # Scraper principal