generating-trading-signals
Analyze price action and generate BUY/SELL signals using technical indicators like RSI, MACD, and Bollinger Bands.
Install
mkdir -p .claude/skills/generating-trading-signals && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/1564" && unzip -o skill.zip -d .claude/skills/generating-trading-signals && rm skill.zipInstalls to .claude/skills/generating-trading-signals
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Generate trading signals using technical indicators (RSI, MACD, BollingerKey capabilities
- →Scan multiple assets for trading signals
- →Perform detailed signal analysis for a specific symbol
- →Filter and rank trading opportunities by confidence
- →Use predefined watchlists for scanning
- →Export signal results to JSON
- →Generate composite BUY/SELL signals with confidence scores
How it works
The system analyzes price action using 7 technical indicators to generate composite BUY/SELL signals. It provides confidence scores and risk management levels based on these indicators.
Inputs & outputs
When to use generating-trading-signals
- →Scanning crypto assets for signals
- →Analyzing technical entry points
- →Generating composite BUY/SELL signals
- →Ranking trading opportunities
About this skill
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 6mOutput 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 --detailShows each indicator's individual signal, value, and reasoning.
-
Filter and rank the best opportunities:
# 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 -
Use predefined watchlists:
python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --list-watchlists python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --watchlist crypto_defiAvailable:
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).
Signal types: STRONG_BUY (+2), BUY (+1), NEUTRAL (0), SELL (-1), STRONG_SELL (-2)
Confidence ranges: 70-100% high conviction | 50-70% moderate | 30-50% weak | 0-30% avoid
See ${CLAUDE_SKILL_DIR}/references/implementation.md for full output format examples and signal type tables.
Error Handling
| Error | Cause | Fix |
|---|---|---|
| No data for symbol | Invalid ticker or delisted | Verify symbol exists on Yahoo Finance |
| Insufficient data | Period too short for indicators | Use --period 6m minimum |
| Rate limit exceeded | Too many rapid API calls | Add delay between scans |
See ${CLAUDE_SKILL_DIR}/references/errors.md for comprehensive error handling.
Examples
Morning crypto scan - Check all top-10 crypto assets for entry opportunities:
python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --watchlist crypto_top10 --period 6m
Deep dive on Bitcoin - Full indicator breakdown with risk management levels:
python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --symbols BTC-USD --detail
Find strongest DeFi buy signals - Filter and rank by confidence:
python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --watchlist crypto_defi --filter buy --rank confidence
Export results - Save to JSON for automated pipeline or further analysis:
python ${CLAUDE_SKILL_DIR}/scripts/scanner.py --watchlist crypto_top10 --output signals.json
Resources
- yfinance for price data
- pandas/numpy for calculations
- Compatible with trading-strategy-backtester plugin
${CLAUDE_SKILL_DIR}/references/implementation.md- Output formats, configuration, backtester integration, file reference
When not to use it
- →When a symbol does not exist on Yahoo Finance
- →When the data period is too short for indicator calculation
Prerequisites
Limitations
- →Requires a minimum period of 6 months for sufficient data
- →Too many rapid API calls can lead to rate limiting
How it compares
This skill combines multiple technical indicators into composite signals with confidence scores and risk management levels, unlike analyzing individual indicators manually.
Compared to similar skills
generating-trading-signals side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| generating-trading-signals (this skill) | 7 | 26d | Review | Intermediate |
| quant-analyst | 103 | 2mo | No flags | Advanced |
| stock-analyzer | 71 | 2mo | Review | Beginner |
| pair-trade-screener | 11 | 1mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by jeremylongshore
View all by jeremylongshore →You might also like
quant-analyst
zenobi-us
Expert quantitative analyst specializing in financial modeling, algorithmic trading, and risk analytics. Masters statistical methods, derivatives pricing, and high-frequency trading with focus on mathematical rigor, performance optimization, and profitable strategy development.
stock-analyzer
FrancyJGLisboa
Provides comprehensive technical analysis for stocks and ETFs using RSI, MACD, Bollinger Bands, and other indicators. Activates when user requests stock analysis, technical indicators, trading signals, or market data for specific ticker symbols.
pair-trade-screener
tradermonty
Statistical arbitrage tool for identifying and analyzing pair trading opportunities. Detects cointegrated stock pairs within sectors, analyzes spread behavior, calculates z-scores, and provides entry/exit recommendations for market-neutral strategies. Use when user requests pair trading opportunities, statistical arbitrage screening, mean-reversion strategies, or market-neutral portfolio construction. Supports correlation analysis, cointegration testing, and spread backtesting.
risk-metrics-calculation
wshobson
Calculate portfolio risk metrics including VaR, CVaR, Sharpe, Sortino, and drawdown analysis. Use when measuring portfolio risk, implementing risk limits, or building risk monitoring systems.
backtesting-trading-strategies
jeremylongshore
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".
model-usage
openclaw
Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.