| name | generating-trading-signals |
| description | 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".
|
| allowed-tools | Read, Write, Edit, Grep, Glob, Bash(python:*) |
| version | 1.30.0 |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| license | MIT |
| tags | ["crypto","trading-signals"] |
| compatibility | Designed for Claude Code, also compatible with Codex and OpenClaw |
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:
set -euo pipefail
pip install yfinance pandas numpy
Optional for visualization: pip install matplotlib
Instructions
-
Quick signal scan across multiple assets:
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.
-
Detailed signal analysis for a specific symbol:
python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --symbols BTC-USD --detail
Shows each indicator's individual signal, value, and reasoning.
-
Filter and rank the best opportunities:
python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --filter buy --min-confidence 70 --rank confidence
python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --output signals.json
-
Use predefined watchlists:
python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --list-watchlists
python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --watchlist crypto_defi
Available: crypto_top10, crypto_defi, crypto_layer2, stocks_tech, etfs_major
Output
The scanner produces a summary table with symbol, signal type, confidence %, price, and stop loss for each asset scanned. Detailed mode adds per-indicator breakdowns with risk management levels (stop loss, take profit, risk/reward ratio).
: STRONG_BUY (+2), BUY (+1), NEUTRAL (0), SELL (-1), STRONG_SELL (-2)