generating-trading-signals

Featured

Generate trading signals using technical indicators (RSI, MACD, Bollinger Bands, etc.). Combines multiple indicators into composite signals with confidence scores. Use when analyzing assets for trading opportunities or checking technical indicators. Trigger with phrases like "get trading signals", "check indicators", "analyze for entry", "scan for opportunities", "generate buy/sell signals", or "technical analysis".

AI & Automation 2,359 stars 334 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Generating Trading Signals ## Overview Multi-indicator signal generation system that analyzes price action using 7 technical indicators and produces composite BUY/SELL signals with confidence scores and risk management levels. **Indicators**: RSI, MACD, Bollinger Bands, Trend (SMA 20/50/200), Volume, Stochastic Oscillator, ADX. ## Prerequisites Install required dependencies: ```bash set -euo pipefail pip install yfinance pandas numpy ``` Optional for visualization: `pip install matplotlib` ## Instructions 1. **Quick signal scan** across multiple assets: ```bash python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --watchlist crypto_top10 --period 6m ``` Output shows signal type (STRONG_BUY/BUY/NEUTRAL/SELL/STRONG_SELL) and confidence per asset. 2. **Detailed signal analysis** for a specific symbol: ```bash python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --symbols BTC-USD --detail ``` Shows each indicator's individual signal, value, and reasoning. 3. **Filter and rank** the best opportunities: ```bash # Only buy signals with 70%+ confidence python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --filter buy --min-confidence 70 --rank confidence # Save results to JSON python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --output signals.json ``` 4. **Use predefined watchlists**: ```bash python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --list-watchlists python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --watchlist crypto_defi ``` Available...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
8 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category