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,266 stars 315 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
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

trading-signals

Fetches live AI crypto trading signals with entry price, stop-loss, take-profit, leverage, confidence scores, and automated verification. Covers 50+ coins including BTC, ETH, SOL. Use when the user asks for crypto signals, trade ideas, market direction, portfolio analysis, or wants to build a trading bot.

0 Updated today
Revised-odontaspis309
AI & Automation Listed

signal-scanner

Use when searching for buying signals, detecting intent data, scoring prospect readiness, or monitoring accounts for trigger events. Triggers: 'scan for signals', 'find buying signals', 'who is ready to buy', 'intent signals', 'signal scoring', 'account signals'.

41 Updated 1 months ago
Othmane-Khadri
AI & Automation Listed

signal-scout

Identifies the buying signal TYPES that matter for the user's market, then uses them to find companies showing those signals right now. Triggers: /signal-scout, "find signals", "what signals matter". Reads: ./gtm/icp.md, ./gtm/company.md. Writes: ./gtm/signals.md. Standalone: yes — asks what they sell if no context exists.

0 Updated today
cismontane-harris2642
AI & Automation Listed

signal-radar

Continuous macro-market signal detection and classification engine that surfaces emerging trends, threats, and whitespace opportunities. Use when: market signals, market intelligence, trend analysis, emerging threats, market monitoring, what is changing in our market.

1 Updated today
varunk130
AI & Automation Featured

backtesting-trading-strategies

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

2,266 Updated today
jeremylongshore