signal-analysis
Overview
This skill provides comprehensive guidance on analyzing market signals from price, volume, order flow, and news data to identify potential trading opportunities. Use this when processing raw market data to generate actionable signals.
Instructions
1. Price Action Analysis
Trend Identification
- Uptrend: Series of higher highs and higher lows
- Downtrend: Series of lower highs and lower lows
- Ranging: Price oscillating between support and resistance
Momentum Assessment
- Strong momentum: Large candles with follow-through
- Weakening momentum: Smaller candles, wicks, indecision
- Divergence: Price vs momentum indicators disagreement
2. Volume Analysis
Volume Patterns
- Volume surge on breakout: Confirms strength
- Declining volume: Weakening trend
- Volume at support/resistance: Key decision points
- Unusual volume spikes: Investigate cause
Order Flow Indicators
- Buy/sell pressure imbalance
- Large orders vs small orders ratio
- Market vs limit order flow
3. Market Structure
Key Levels
- Support: Previous lows where buying emerged
- Resistance: Previous highs where selling emerged
- Breakout/breakdown levels
- Psychological round numbers
Pattern Recognition
- Consolidation before moves
- Failed breakouts (traps)
- Exhaustion gaps
- Climax patterns
4. Signal Quality Assessment
High Quality Signals
- Multiple timeframe confirmation
- Volume confirms price action
- Clear risk/reward setup
- Recent similar patterns worked
Low Quality Signals
- Conflicting timeframes
- Low volume, choppy price action
- Poor risk/reward
- High noise, low conviction
5. News and Events Impact
High Impact Events
- Major regulatory announcements
- Exchange listings/delistings
- Partnership announcements
- Security incidents
Signal Integration
- Positive news + bullish technicals = Strong buy signal
- Negative news + bearish technicals = Strong sell signal
- News conflicts with technicals = Wait for confirmation
Output Format
{
"signals": [
{
"symbol": "BTC/USDT",
"signal_type": "bullish" | "bearish" | "neutral",
"strength": 0.8,
"confidence": 0.75,
"key_factors": [
"Breakout above resistance with high volume",
"Multiple timeframe alignment",
"Positive news catalyst"
],
"description": "Strong bullish breakout signal with volume confirmation",
"entry_zone": {"min": 45000, "max": 46000},
"targets": [48000, 50000, 52000],
"stop_loss": 43500
}
],
"market_overview": "General market showing strength with Bitcoin leading, altcoins following"
}
Best Practices
- Always consider timeframe context - Align signals with higher timeframe trend
- Volume is critical - Don't trust moves without volume
- Wait for confirmation - Don't jump on weak signals
- Track signal performance - Learn which patterns work best
- Be patient - Quality over quantity
- Document patterns - Save successful patterns to /memories/signals/
1---2name: signal-analysis3description: Use this skill for analyzing market signals, price trends, volume patterns, and identifying potential trading opportunities from multiple data sources.4---56# signal-analysis78## Overview910This skill provides comprehensive guidance on analyzing market signals from price, volume, order flow, and news data to identify potential trading opportunities. Use this when processing raw market data to generate actionable signals.1112## Instructions1314### 1. Price Action Analysis1516**Trend Identification**17- Uptrend: Series of higher highs and higher lows18- Downtrend: Series of lower highs and lower lows19- Ranging: Price oscillating between support and resistance2021**Momentum Assessment**22- Strong momentum: Large candles with follow-through23- Weakening momentum: Smaller candles, wicks, indecision24- Divergence: Price vs momentum indicators disagreement2526### 2. Volume Analysis2728**Volume Patterns**29- Volume surge on breakout: Confirms strength30- Declining volume: Weakening trend31- Volume at support/resistance: Key decision points32- Unusual volume spikes: Investigate cause3334**Order Flow Indicators**35- Buy/sell pressure imbalance36- Large orders vs small orders ratio37- Market vs limit order flow3839### 3. Market Structure4041**Key Levels**42- Support: Previous lows where buying emerged43- Resistance: Previous highs where selling emerged44- Breakout/breakdown levels45- Psychological round numbers4647**Pattern Recognition**48- Consolidation before moves49- Failed breakouts (traps)50- Exhaustion gaps51- Climax patterns5253### 4. Signal Quality Assessment5455**High Quality Signals**56- Multiple timeframe confirmation57- Volume confirms price action58- Clear risk/reward setup59- Recent similar patterns worked6061**Low Quality Signals**62- Conflicting timeframes63- Low volume, choppy price action64- Poor risk/reward65- High noise, low conviction6667### 5. News and Events Impact6869**High Impact Events**70- Major regulatory announcements71- Exchange listings/delistings72- Partnership announcements73- Security incidents7475**Signal Integration**76- Positive news + bullish technicals = Strong buy signal77- Negative news + bearish technicals = Strong sell signal78- News conflicts with technicals = Wait for confirmation7980## Output Format8182```json83{84 "signals": [85 {86 "symbol": "BTC/USDT",87 "signal_type": "bullish" | "bearish" | "neutral",88 "strength": 0.8,89 "confidence": 0.75,90 "key_factors": [91 "Breakout above resistance with high volume",92 "Multiple timeframe alignment",93 "Positive news catalyst"94 ],95 "description": "Strong bullish breakout signal with volume confirmation",96 "entry_zone": {"min": 45000, "max": 46000},97 "targets": [48000, 50000, 52000],98 "stop_loss": 4350099 }100 ],101 "market_overview": "General market showing strength with Bitcoin leading, altcoins following"102}103```104105## Best Practices1061071. **Always consider timeframe context** - Align signals with higher timeframe trend1082. **Volume is critical** - Don't trust moves without volume1093. **Wait for confirmation** - Don't jump on weak signals1104. **Track signal performance** - Learn which patterns work best1115. **Be patient** - Quality over quantity1126. **Document patterns** - Save successful patterns to /memories/signals/