skills/aaronabuusama/smc-chart-analysis/SKILL.md
Smart Money Concepts (SMC) and ICT-style chart analysis skill. Analyzes any market with one command - fetches real data, runs multi-timeframe analysis, identifies trade setups with entry/stop/targets. Use when user asks to "analyze [SYMBOL]", wants SMC/ICT analysis, asks about liquidity sweeps, order blocks, fair value gaps, or market structure, or wants trade setup recommendations.
npx skillsauth add aiskillstore/marketplace smc-chart-analysisInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
AI-powered Smart Money Concepts analysis with actionable trade setups.
┌─────────────────────────────────────────────────────────────┐
│ 1. FETCH DATA │
│ Call web app API: localhost:3001/api/smc-analyze │
│ → Returns: structure, liquidity, FVGs, sweeps │
└─────────────────────────┬───────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ 2. AI INTERPRETATION (Claude) │
│ Analyze the mechanical data using ICT methodology │
│ → Determine bias, identify setups, assess confluence │
└─────────────────────────┬───────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ 3. TRADE SETUP OUTPUT │
│ • Direction (long/short) │
│ • Entry zone with reasoning │
│ • Stop loss with reasoning │
│ • Targets with R:R ratios │
│ • Setup grade (A+/A/B/C) │
│ • Narrative explaining the trade thesis │
└─────────────────────────────────────────────────────────────┘
When a user asks to analyze a market (e.g., "analyze BTC", "what's the setup on ETH"):
curl "http://localhost:3001/api/smc-analyze?symbol=BTC/USDT&timeframe=1h&style=intraday"
Or for multiple timeframes:
# HTF (4H) for bias
curl "http://localhost:3001/api/smc-analyze?symbol=BTC/USDT&timeframe=4h&style=swing"
# LTF (15m) for entry
curl "http://localhost:3001/api/smc-analyze?symbol=BTC/USDT&timeframe=15m&style=scalp"
Take the mechanical data and provide AI-powered analysis following the ICT methodology:
Determine HTF Bias
Identify Entry POI
Construct Trade Setup
Grade the Setup
Format the response as:
## [SYMBOL] SMC Analysis
### Bias: [BULLISH/BEARISH]
[Explain why based on structure, premium/discount zone, and liquidity]
### Current Setup: [GRADE]
**Direction:** [LONG/SHORT]
**Entry Zone:** $XX,XXX - $XX,XXX
- Reasoning: [Why this zone - FVG? OB? Sweep level?]
**Stop Loss:** $XX,XXX
- Reasoning: [Below sweep low / Above sweep high]
- Risk: X.X%
**Targets:**
| Target | Price | R:R | Reasoning |
|--------|-------|-----|-----------|
| TP1 | $XX,XXX | 1:2 | [Nearest liquidity] |
| TP2 | $XX,XXX | 1:3 | [Major BSL/SSL] |
| TP3 | $XX,XXX | 1:5 | [HTF liquidity] |
### Confluence Factors
- [ ] HTF bias aligned
- [ ] Price in discount/premium
- [ ] Recent sweep occurred
- [ ] ChoCH confirmed
- [ ] FVG/OB present at entry
- [ ] In killzone (if applicable)
### Warnings
- [Any concerns about the setup]
### Narrative
[2-3 sentence explanation of the trade thesis in plain English]
---
*This is analysis, not financial advice. Always manage risk.*
The web app at localhost:3001 provides:
To start the web app:
cd /Users/abuusama/projects/bots/signals && bun dev
The web app shows the mechanical data. This skill provides the AI interpretation.
Parameters: | Param | Default | Options | |-------|---------|---------| | symbol | BTC/USDT | BTC/USDT, ETH/USDT, SOL/USDT | | timeframe | 1h | 1m, 5m, 15m, 1h, 4h, 1d, 1w | | style | intraday | scalp, intraday, swing, position |
Response:
{
"symbol": "BTC/USDT",
"timeframe": "1h",
"style": "intraday",
"currentPrice": 88338.29,
"structure": {
"bias": "BULLISH",
"priceZone": "PREMIUM",
"range": { "high": 89399.97, "low": 84450.01 }
},
"liquidity": {
"bsl": [{ "price": 92754.00, "strength": "strong" }],
"ssl": [{ "price": 84450.01, "strength": "strong" }]
},
"inefficiencies": {
"fvgs": [{ "type": "bull", "high": 88049.89, "low": 87946.96 }]
},
"orderFlow": {
"recentSwings": [...],
"structureBreaks": [{ "type": "CHOCH", "direction": "up", "price": 88339.27 }]
},
"atr": 132.75
}
| Session | Time | Best For | |---------|------|----------| | London Open | 02:00-05:00 | Manipulation moves | | NY AM | 07:00-10:00 | Highest probability | | London Close | 10:00-12:00 | Reversal setups |
User: "analyze BTC"
curl "http://localhost:3001/api/smc-analyze?symbol=BTC/USDT&timeframe=1h"
## BTC/USDT SMC Analysis
### Bias: BULLISH
Price is currently at $88,338 in the PREMIUM zone of the 1H range ($84,450 - $89,399).
However, we just had a CHOCH to the upside at $88,339, suggesting bullish continuation
despite being in premium.
### Current Setup: B+
**Direction:** LONG (on pullback)
**Entry Zone:** $87,946 - $88,049
- Reasoning: Unfilled bullish FVG from recent impulse move
**Stop Loss:** $87,500
- Reasoning: Below the recent BOS level at $87,514
- Risk: 0.95%
**Targets:**
| Target | Price | R:R | Reasoning |
|--------|-------|-----|-----------|
| TP1 | $89,400 | 1:1.7 | Range high / BSL |
| TP2 | $90,634 | 1:3.2 | Next BSL level |
| TP3 | $92,754 | 1:5.7 | Major BSL |
### Confluence Factors
- [x] ChoCH confirmed bullish
- [x] FVG present at entry zone
- [ ] Not in killzone currently
- [ ] Price in premium (slight concern)
### Warnings
- Price is in premium zone - ideal longs are from discount
- Consider waiting for deeper pullback to $87,500 area
### Narrative
BTC showed a change of character to the upside, breaking recent structure.
The setup suggests buying a pullback into the unfilled FVG around $88,000,
with stops below recent structure and targets at the BSL levels above.
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.