# wallstreet
**Repository Path**: mirrors/wallstreet
## Basic Information
- **Project Name**: wallstreet
- **Description**: wallstreet,股票报价和图表的终端
- **Primary Language**: JavaScript
- **License**: MIT
- **Default Branch**: master
- **Homepage**: https://www.oschina.net/p/wallstreet
- **GVP Project**: No
## Statistics
- **Stars**: 17
- **Forks**: 0
- **Created**: 2019-09-15
- **Last Updated**: 2026-01-03
## Categories & Tags
**Categories**: stocks
**Tags**: None
## README
# wallstreet
Stock quotes and comprehensive data for the terminal using Yahoo Finance

# Features
- Fetches real-time stock data from Yahoo Finance using yfinance
- Displays comprehensive stock information including:
- Current price and daily change (color-coded)
- Volume and average volume
- Market cap
- Valuation ratios (P/E, Forward P/E, PEG, P/B)
- Dividend yield
- Beta
- 52-week high/low
- EPS and analyst target price
- Clean, colorful terminal output
# Usage
```bash
# run with default stocks (AAPL,MSFT,GOOGL,INTC,AMD,PEP,MU,TSLA,NFLX,DIS,AMZN,SPY,QQQ)
uv run main.py
# fetch specific stocks
uv run main.py AAPL MSFT GOOGL
# fetch a single stock
uv run main.py TSLA
# get help
uv run main.py --help
```