GE

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.zip

Installs 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, Bollinger
73 charsno explicit “when” trigger
Intermediate

Key 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

You give it
Asset symbols or watchlists, and a specified period for data
You get back
Summary table with signal type, confidence, price, and stop loss for each asset

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

  1. 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.

  2. 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.

  3. 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
    
  4. 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).

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

ErrorCauseFix
No data for symbolInvalid ticker or delistedVerify symbol exists on Yahoo Finance
Insufficient dataPeriod too short for indicatorsUse --period 6m minimum
Rate limit exceededToo many rapid API callsAdd 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

yfinancepandasnumpy

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.

SkillInstallsUpdatedSafetyDifficulty
generating-trading-signals (this skill)726dReviewIntermediate
quant-analyst1032moNo flagsAdvanced
stock-analyzer712moReviewBeginner
pair-trade-screener111moReviewAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

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".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

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.

103355

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.

71214

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.

1198

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.

881

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".

1071

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.

548

Search skills

Search the agent skills registry