stock-explorer
Stock Explorer pulls live market data and OHLCV information from Yahoo Finance, then computes technical indicators like RSI, MACD, Bollinger Bands, VWAP, and ATR directly on your machine. Supports US stocks, A-shares, HK stocks, crypto, and forex tickers with commands for quotes, fundamentals, trend charts, and comprehensive analysis reports.
Stock Explorer retrieves real-time quotes and technical indicators from Yahoo Finance without requiring an API key.
AI-generated summary based on this skill's SKILL.md
Install
netease-youdao/LobsterAI/stock-explorer · repository language: TypeScript
git clone https://github.com/netease-youdao/LobsterAI
cp -r LobsterAI/SKILLs/stock-explorer ~/.claude/skills/stock-explorernpx skillfed install netease-youdao/LobsterAI/stock-explorerFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How do I get stock price TSLA with Stock Explorer?
Stock Explorer retrieves real-time stock quotes directly from Yahoo Finance. Simply use the quote command with your ticker symbol (e.g., TSLA) to fetch the current price and market data instantly. The tool supports US stocks, crypto pairs like BTC-USD, international equities such as HK stocks (0700.HK), and forex pairs (USDKRW).
What technical indicators does Stock Explorer calculate?
Stock Explorer generates five core technical indicators: RSI (Relative Strength Index) for overbought/oversold signals, MACD for momentum analysis, Bollinger Bands for volatility assessment, ATR (Average True Range) for price movement magnitude, and VWAP (Volume Weighted Average Price). All calculations run locally on your machine without requiring external API keys.
Can Stock Explorer show historical price trends with charts?
Yes. Stock Explorer visualizes historical price data using ASCII charts, letting you view 6-month trends and longer periods directly in your terminal. Combined with technical indicator overlays, this helps identify patterns and support/resistance levels for trend analysis.
Does Stock Explorer provide stock fundamentals summaries?
Stock Explorer analyzes stock fundamentals and market data summaries alongside real-time quotes. You can request fundamental analysis for any supported ticker (US stocks, A-shares, HK stocks, crypto, forex) to get a quick overview of key metrics and market context.
What is a comprehensive trading analysis report from Stock Explorer?
Stock Explorer generates one-shot professional trading analysis reports that combine real-time quotes, technical indicators (RSI, MACD, Bollinger Bands, ATR, VWAP), historical trends, and fundamental summaries into a single detailed output. Perfect for quick decision-making without manual data aggregation.
Which markets and ticker formats does Stock Explorer support?
Stock Explorer works with US stocks (TSLA, AAPL, NVDA), Hong Kong stocks (0700.HK), Chinese A-shares, cryptocurrency pairs (BTC-USD), and forex rates (USDKRW). All data pulls from Yahoo Finance, and the tool is released under the MIT license.
SKILL.md
rendered from the published skill — quoted content, verbatim
Stock Information Explorer
This skill fetches OHLCV data from Yahoo Finance via yfinance and computes technical indicators locally (no API key required).
Dependencies
Python packages (install once):
pip install yfinance rich pandas plotille
Commands
IMPORTANT: Always use the $SKILLS_ROOT environment variable to locate scripts.
1) Real-time Quotes (price)
python "$SKILLS_ROOT/stock-explorer/scripts/quote.py" price TSLA
# shorthand
python "$SKILLS_ROOT/stock-explorer/scripts/quote.py" TSLA
2) Fundamental Summary (fundamentals)
python "$SKILLS_ROOT/stock-explorer/scripts/quote.py" fundamentals NVDA
3) ASCII Trend (history)
python "$SKILLS_ROOT/stock-explorer/scripts/quote.py" history AAPL 6mo
4) Professional Analysis (pro)
输出详细的技术指标文本分析报告。
```bash
基础分析(价格区间)
python
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 2 files
SKILLs/stock-explorer/SKILL.md
SKILLs/stock-explorer/scripts/quote.py