smc-chart-analysis
指定された銘柄のリアルタイムデータに基づき、スマートマネーコンセプトやICTに基づいたチャート分析を行い、エントリー、ストップロス、目標価格を含むトレード戦略を提案するSkill。
📜 元の英語説明(参考)
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.
🇯🇵 日本人クリエイター向け解説
指定された銘柄のリアルタイムデータに基づき、スマートマネーコンセプトやICTに基づいたチャート分析を行い、エントリー、ストップロス、目標価格を含むトレード戦略を提案するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o smc-chart-analysis.zip https://jpskill.com/download/16892.zip && unzip -o smc-chart-analysis.zip && rm smc-chart-analysis.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/16892.zip -OutFile "$d\smc-chart-analysis.zip"; Expand-Archive "$d\smc-chart-analysis.zip" -DestinationPath $d -Force; ri "$d\smc-chart-analysis.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
smc-chart-analysis.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
smc-chart-analysisフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 7
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
SMC Chart Analysis Skill
AIを活用した、実行可能なトレード設定を備えたスマートマネーコンセプト分析です。
このスキルの仕組み
┌─────────────────────────────────────────────────────────────┐
│ 1. データ取得 │
│ WebアプリのAPIを呼び出す: localhost:3001/api/smc-analyze │
│ → 返り値: structure, liquidity, FVGs, sweeps │
└─────────────────────────┬───────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ 2. AIによる解釈 (Claude) │
│ ICT手法を用いて機械的なデータを分析します │
│ → バイアスを決定し、セットアップを特定し、コンフルエンスを評価します │
└─────────────────────────┬───────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ 3. トレード設定の出力 │
│ • 方向 (ロング/ショート) │
│ • 根拠のあるエントリーゾーン │
│ • 根拠のあるストップロス │
│ • R:Rレシオを持つターゲット │
│ • セットアップのグレード (A+/A/B/C) │
│ • トレードのテーゼを説明するナラティブ │
└─────────────────────────────┘
クイックスタート
ユーザーが市場の分析を依頼した場合 (例: "BTCを分析して"、"ETHのセットアップは何?"):
ステップ 1: 機械的なデータを取得する
curl "http://localhost:3001/api/smc-analyze?symbol=BTC/USDT&timeframe=1h&style=intraday"
または、複数の時間枠の場合:
# HTF (4H) でバイアスを判断
curl "http://localhost:3001/api/smc-analyze?symbol=BTC/USDT&timeframe=4h&style=swing"
# LTF (15m) でエントリーを判断
curl "http://localhost:3001/api/smc-analyze?symbol=BTC/USDT&timeframe=15m&style=scalp"
ステップ 2: AIで解釈する
機械的なデータを取り込み、ICT手法に従ってAIを活用した分析を提供します。
-
HTFバイアスを決定する
- 価格はプレミアムゾーンまたはディスカウントゾーンにありますか?
- 主要な liquidity (BSL/SSL) はどこにありますか?
- トレンドの方向は?
-
エントリー POI を特定する
- バイアスの方向に未軽減の FVGs があるか
- 最近の ChoCH または BOS の確認があるか
- 発生した liquidity sweeps があるか
-
トレード設定を構築する
- エントリー: ディスカウント (ロングの場合) またはプレミアム (ショートの場合) の FVG/OB で
- ストップ: liquidity sweep の下/上
- ターゲット: 反対側の liquidity pool
-
セットアップを評価する
- A+: すべてのコンフルエンス要素、キルゾーン内、明確なバイアス
- A: ほとんどの要素が一致、わずかな懸念事項
- B: まともなセットアップ、いくつかのコンフルエンスが欠落
- C: スキップ - より良いセットアップを待ちます
ステップ 3: ユーザーに提示する
レスポンスを次の形式でフォーマットします。
## [SYMBOL] SMC 分析
### バイアス: [BULLISH/BEARISH]
[structure、プレミアム/ディスカウントゾーン、および liquidity に基づいた理由を説明]
### 現在のセットアップ: [GRADE]
**方向:** [LONG/SHORT]
**エントリーゾーン:** $XX,XXX - $XX,XXX
- 理由: [このゾーンの理由 - FVG? OB? Sweep レベル?]
**ストップロス:** $XX,XXX
- 理由: [Sweep ローの下 / Sweep ハイの上]
- リスク: X.X%
**ターゲット:**
| ターゲット | 価格 | R:R | 理由 |
|--------|-------|-----|-----------|
| TP1 | $XX,XXX | 1:2 | [最も近い liquidity] |
| TP2 | $XX,XXX | 1:3 | [主要な BSL/SSL] |
| TP3 | $XX,XXX | 1:5 | [HTF liquidity] |
### コンフルエンス要素
- [ ] HTFバイアスが一致
- [ ] 価格がディスカウント/プレミアムにある
- [ ] 最近 sweep が発生
- [ ] ChoCH が確認済み
- [ ] エントリーに FVG/OB が存在
- [ ] キルゾーン内 (該当する場合)
### 警告
- [セットアップに関する懸念事項]
### ナラティブ
[トレードのテーゼを平易な英語で2〜3文で説明]
---
*これは分析であり、金融アドバイスではありません。常にリスクを管理してください。*
Webアプリの統合
localhost:3001 のWebアプリは以下を提供します。
- オーバーレイ付きのビジュアルチャート (BSL, SSL, EQ, FVGs)
- シンボルセレクター (BTC, ETH, SOL)
- 時間枠ボタン (1m から 1W)
- 機械的なデータのための "Analyze SMC" ボタン
Webアプリを起動するには:
cd /Users/abuusama/projects/bots/signals && bun dev
Webアプリは機械的なデータを表示します。このスキルはAIによる解釈を提供します。
APIリファレンス
GET /api/smc-analyze
パラメータ: | パラメータ | デフォルト | オプション | |-------|---------|---------| | symbol | BTC/USDT | BTC/USDT, ETH/USDT, SOL/USDT | | timeframe | 1h | 1m, 5m, 15m, 1h, 4h, 1d, 1w | | style | intraday | scalp, intraday, swing, position |
レスポンス:
{
"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
}
ICT手法リファレンス
プレミアム/ディスカウントゾーン
- プレミアム: 平衡 (レンジの50%) より上 - ショートを探す
- ディスカウント: 平衡より下 - ロングを探す
Liquidityレベル
- BSL (Buy-Side Liquidity): ストップが置かれているスイング高値 - ロングのターゲット
- SSL (Sell-Side Liquidity): ストップが置かれているスイング安値 - ショートのターゲット
エントリートリガー
- BOS (Break of Structure): 継続シグナル
- ChoCH (Change of Character): 反転シグナル
- Sweep: 反転前の liquidity の奪取
キルゾーン (EST)
| セッション | 時間 | 最適 |
|---|---|---|
| ロンドンオープン | 02:00-05:00 | マニピュレーションの動き |
| NY AM | 07:00-10:00 | 最高の確率 |
| ロンドンクローズ | 10:00-12:00 | 反転セットアップ |
分析例
ユーザー: "BTCを分析して"
-
データを取得:
curl "http://localhost:3001/api/smc-analyze?symbol=BTC/USDT&timeframe=1h" -
解釈
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
SMC Chart Analysis Skill
AI-powered Smart Money Concepts analysis with actionable trade setups.
How This Skill Works
┌─────────────────────────────────────────────────────────────┐
│ 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 │
└─────────────────────────────────────────────────────────────┘
Quick Start
When a user asks to analyze a market (e.g., "analyze BTC", "what's the setup on ETH"):
Step 1: Fetch Mechanical Data
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"
Step 2: Interpret with AI
Take the mechanical data and provide AI-powered analysis following the ICT methodology:
-
Determine HTF Bias
- Is price in premium or discount?
- Where is major liquidity (BSL/SSL)?
- What is the trend direction?
-
Identify Entry POI
- Unmitigated FVGs in direction of bias
- Recent ChoCH or BOS confirmation
- Liquidity sweeps that occurred
-
Construct Trade Setup
- Entry: At FVG/OB in discount (for longs) or premium (for shorts)
- Stop: Below/above the liquidity sweep
- Target: Opposite liquidity pool
-
Grade the Setup
- A+: All confluence factors, in killzone, clear bias
- A: Most factors aligned, minor concerns
- B: Decent setup, missing some confluence
- C: Skip - wait for better setup
Step 3: Present to User
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.*
Web App Integration
The web app at localhost:3001 provides:
- Visual chart with overlays (BSL, SSL, EQ, FVGs)
- Symbol selector (BTC, ETH, SOL)
- Timeframe buttons (1m to 1W)
- "Analyze SMC" button for mechanical data
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.
API Reference
GET /api/smc-analyze
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
}
ICT Methodology Reference
Premium/Discount Zones
- Premium: Above equilibrium (50% of range) - look for shorts
- Discount: Below equilibrium - look for longs
Liquidity Levels
- BSL (Buy-Side Liquidity): Swing highs where stops rest - target for longs
- SSL (Sell-Side Liquidity): Swing lows where stops rest - target for shorts
Entry Triggers
- BOS (Break of Structure): Continuation signal
- ChoCH (Change of Character): Reversal signal
- Sweep: Liquidity grab before reversal
Killzones (EST)
| 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 |
Example Analysis
User: "analyze BTC"
-
Fetch data:
curl "http://localhost:3001/api/smc-analyze?symbol=BTC/USDT&timeframe=1h" -
Interpret the response and provide:
## 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.
Important Notes
- Never guarantee outcomes - present as "the analysis suggests" not "this will happen"
- Always include risk warnings - trading involves risk of loss
- Grade setups honestly - don't oversell B/C setups as A+ setups
- Mention timing - note if we're in a killzone or not
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (8,833 bytes)
- 📎 references/markup-guide.md (13,192 bytes)
- 📎 references/methodology.md (9,996 bytes)
- 📎 references/narrative-templates.md (9,132 bytes)
- 📎 references/output-schema.md (8,606 bytes)
- 📎 references/resources.md (7,368 bytes)
- 📎 references/terminology.md (7,415 bytes)