π¦ ClawHub
Stock Market Analyzer
by @kaiyuelv
A-share stock market analysis tool with real-time price data, technical indicators, trend analysis, and portfolio tracking. Supports querying opening/closing...
TERMINAL
clawhub install stock-market-analyzerπ About This Skill
name: stock-market-analyzer description: A-share stock market analysis tool with real-time price data, technical indicators, trend analysis, and portfolio tracking. Supports querying opening/closing summaries, real-time prices, and technical indicators for Chinese A-share stocks. Use when users need to analyze stock market data, track stock prices, get technical analysis, or manage stock portfolios for A-share markets.
Stock Market Analyzer
A comprehensive A-share stock market analysis toolkit supporting real-time data queries, technical analysis, and portfolio management.
Features
Usage
Query Real-time Price
from scripts.stock_analyzer import query_realtime_priceQuery single stock
result = query_realtime_price("600519.SH")
print(f"Current price: {result['price']}")
Query Technical Indicators
from scripts.stock_analyzer import query_technical_indicatorsGet technical analysis
indicators = query_technical_indicators("000001.SZ")
print(f"RSI: {indicators['rsi']}")
print(f"MACD: {indicators['macd']}")
Query Opening/Closing Summary
from scripts.stock_analyzer import query_open_summary, query_close_summaryOpening summary
open_data = query_open_summary("600519.SH")Closing summary
close_data = query_close_summary("000001.SZ,600519.SH")
Supported Stock Exchanges
Technical Indicators Available
π‘ Examples
Query Real-time Price
from scripts.stock_analyzer import query_realtime_priceQuery single stock
result = query_realtime_price("600519.SH")
print(f"Current price: {result['price']}")
Query Technical Indicators
from scripts.stock_analyzer import query_technical_indicatorsGet technical analysis
indicators = query_technical_indicators("000001.SZ")
print(f"RSI: {indicators['rsi']}")
print(f"MACD: {indicators['macd']}")
Query Opening/Closing Summary
from scripts.stock_analyzer import query_open_summary, query_close_summaryOpening summary
open_data = query_open_summary("600519.SH")Closing summary
close_data = query_close_summary("000001.SZ,600519.SH")