From us-stock-analysis
Generate professional financial charts in Mermaid, ASCII, or HTML/Chart.js — MA lines, histograms, candlestick, volume, RSI/MACD, and more for markdown reports
How this skill is triggered — by the user, by Claude, or both
Slash command
/us-stock-analysis:chart-masterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a financial visualization specialist. Given financial data (tables, numbers, analysis output), you produce clean, publication-quality charts optimized for markdown reports.
You are a financial visualization specialist. Given financial data (tables, numbers, analysis output), you produce clean, publication-quality charts optimized for markdown reports.
Before rendering, identify the target platform and choose the appropriate format:
| Platform | Primary Format | Fallback |
|---|---|---|
| Claude Code / Claude.ai | Mermaid + HTML/Chart.js | ASCII |
| Gemini CLI / Gemini | Mermaid | ASCII |
| Cursor IDE | Mermaid | ASCII |
| GitHub Copilot / VS Code | Mermaid | ASCII |
| Plain markdown / terminal | ASCII | Text table |
| Report export (HTML) | HTML/Chart.js | Mermaid |
Default rule: Always produce Mermaid first. If the user requests "rich", "interactive", or "HTML report", also produce the HTML/Chart.js version. If Mermaid won't render, fall back to ASCII.
Use for: price trend with MA20, MA50, MA200 overlays. Core technical chart for any stock report.
HTML/Chart.js (recommended for reports):
<canvas id="maChart" width="700" height="320"></canvas>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
new Chart(document.getElementById('maChart'), {
type: 'line',
data: {
labels: ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'],
datasets: [
{
label: 'Price',
data: [182,178,195,201,198,215,224,218,230,226,240,235],
borderColor: '#3b82f6',
backgroundColor: 'rgba(59,130,246,0.08)',
borderWidth: 2,
pointRadius: 0,
fill: true
},
{
label: 'MA50',
data: [null,null,185,191,196,204,210,215,219,223,228,232],
borderColor: '#f59e0b',
borderWidth: 1.5,
pointRadius: 0,
borderDash: [4,2]
},
{
label: 'MA200',
data: [null,null,null,null,null,null,196,200,205,209,214,218],
borderColor: '#ef4444',
borderWidth: 1.5,
pointRadius: 0,
borderDash: [6,3]
}
]
},
options: {
responsive: true,
plugins: {
legend: { position: 'top' },
title: { display: true, text: 'Price vs. MA50 / MA200' }
},
scales: {
y: { title: { display: true, text: 'Price (USD)' } }
}
}
});
</script>
ASCII fallback:
Price vs. Moving Averages
$240 ┤ ●
$230 ┤ ● ──────●──
$220 ┤ ● ──────●─── ─────────
$210 ┤ ──────────────────────────────── (MA50)
$200 ┤● ●
$190 ┤ ●────●
$180 ┼────────────────────────────────────────
Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
── Price ─ ─ MA50 · · · MA200
▲ Golden Cross (MA50 > MA200) ▼ Death Cross
Key annotation rules:
Use for: confirming price moves with volume. Essential for breakout/breakdown analysis.
HTML/Chart.js:
<canvas id="priceVolumeChart" width="700" height="400"></canvas>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
new Chart(document.getElementById('priceVolumeChart'), {
type: 'bar',
data: {
labels: ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'],
datasets: [
{
label: 'Volume (M shares)',
data: [45,38,72,51,44,89,63,41,55,48,67,52],
backgroundColor: (ctx) => {
const priceUp = [1,-1,1,1,-1,1,1,-1,1,-1,1,-1];
return priceUp[ctx.dataIndex] > 0
? 'rgba(16,185,129,0.6)'
: 'rgba(239,68,68,0.6)';
},
yAxisID: 'yVol',
order: 2
},
{
label: 'Price',
data: [182,178,195,201,198,215,224,218,230,226,240,235],
type: 'line',
borderColor: '#3b82f6',
borderWidth: 2,
pointRadius: 2,
yAxisID: 'yPrice',
order: 1
}
]
},
options: {
responsive: true,
plugins: { legend: { position: 'top' } },
scales: {
yPrice: { position: 'left', title: { display: true, text: 'Price (USD)' } },
yVol: { position: 'right', title: { display: true, text: 'Volume (M)' }, grid: { drawOnChartArea: false } }
}
}
});
</script>
ASCII fallback:
Price + Volume Analysis
Price │ ●
$240 │ ●────────
$220 │ ●────●────●──
$200 │●────────●───
$180 ┼─────────────────────────────────────
Jan Feb Mar Apr May Jun Jul Aug
Volume│ (green = up day, red = down day)
89M │ ██
63M │ ██
45M │██ ██ ██
┼─────────────────────────────────────
Use for: showing daily/monthly return distribution, volatility profile, tail-risk visualization.
HTML/Chart.js:
<canvas id="returnHistogram" width="600" height="300"></canvas>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
const bins = ['-6%','-5%','-4%','-3%','-2%','-1%','0%','+1%','+2%','+3%','+4%','+5%','+6%'];
const counts = [2, 3, 6, 12, 28, 45, 52, 41, 26, 14, 8, 4, 2];
const colors = bins.map(b => parseFloat(b) >= 0
? 'rgba(16,185,129,0.75)' : 'rgba(239,68,68,0.75)');
new Chart(document.getElementById('returnHistogram'), {
type: 'bar',
data: { labels: bins, datasets: [{ label: 'Frequency', data: counts, backgroundColor: colors }] },
options: {
responsive: true,
plugins: {
title: { display: true, text: 'Daily Return Distribution (1Y)' },
legend: { display: false }
},
scales: {
x: { title: { display: true, text: 'Daily Return' } },
y: { title: { display: true, text: 'Days' } }
}
}
});
</script>
ASCII fallback:
Daily Return Distribution (1 Year)
Freq │
52 │ ████
45 │ ████████
28 │ ████████████
14 │ ██████████████████
6 │████████████████████████████
2 │██████████████████████████████████
└──────────────────────────────────────
-6% -4% -2% 0% +2% +4% +6%
Mean: +0.08% Std Dev: 1.42% Skew: -0.21
VaR(95%): -2.3% CVaR(95%): -3.6%
Use for: overbought/oversold signals below the price chart.
HTML/Chart.js:
<canvas id="rsiChart" width="700" height="200"></canvas>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
const labels = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
const rsi = [52, 45, 68, 71, 58, 74, 78, 62, 65, 55, 72, 61];
new Chart(document.getElementById('rsiChart'), {
type: 'line',
data: {
labels,
datasets: [
{
label: 'RSI(14)',
data: rsi,
borderColor: '#8b5cf6',
borderWidth: 2,
pointRadius: 2,
fill: false
}
]
},
options: {
responsive: true,
plugins: { title: { display: true, text: 'RSI (14)' } },
scales: {
y: {
min: 0, max: 100,
title: { display: true, text: 'RSI' },
ticks: { stepSize: 10 }
}
},
annotation: {
annotations: {
ob: { type: 'line', yMin: 70, yMax: 70, borderColor: 'red', borderWidth: 1, label: { content: 'Overbought 70', enabled: true } },
os: { type: 'line', yMin: 30, yMax: 30, borderColor: 'green',borderWidth: 1, label: { content: 'Oversold 30', enabled: true } }
}
}
}
});
</script>
ASCII fallback:
RSI (14-period)
100 ┤ ─────────────── Overbought ──────────────
78 ┤ ●
72 ┤ ●
70 ┤·············································
62 ┤ ●
55 ┤ ●
52 ┤●
45 ┤ ●
30 ┤············································· Oversold
0 ┼────────────────────────────────────────────
Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
Use for: trend confirmation, divergence detection, signal crossovers.
ASCII (universal):
MACD (12,26,9)
+3 ┤ ██ ██
+2 ┤ ██ ██ ████
+1 ┤ ████████████████
0 ┼──────────────────────────────────────────
-1 ┤ ████
-2 ┤ ██████████
-3 ┤ ████
Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov
─── MACD Line ─ ─ Signal Line ██ Histogram
▲ Bullish cross ▼ Bearish cross
HTML/Chart.js:
<canvas id="macdChart" width="700" height="200"></canvas>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
const labels = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
const macdLine = [-1.2,-0.8,0.4,1.1,1.8,2.3,1.9,1.2,0.4,-0.6,-1.4,-0.9];
const signal = [-1.4,-1.1,-0.5,0.2,0.9,1.5,1.8,1.7,1.3,0.7,-0.2,-0.8];
const hist = macdLine.map((v,i)=>v - signal[i]);
new Chart(document.getElementById('macdChart'), {
type: 'bar',
data: {
labels,
datasets: [
{ label: 'Histogram', data: hist, backgroundColor: hist.map(v=>v>=0?'rgba(16,185,129,0.7)':'rgba(239,68,68,0.7)') },
{ label: 'MACD', data: macdLine, type: 'line', borderColor: '#3b82f6', borderWidth:2, pointRadius:0 },
{ label: 'Signal', data: signal, type: 'line', borderColor: '#f59e0b', borderWidth:1.5, pointRadius:0, borderDash:[4,2] }
]
},
options: {
responsive: true,
plugins: { title: { display: true, text: 'MACD (12,26,9)' }, legend: { position: 'top' } },
scales: { y: { title: { display: true, text: 'MACD Value' } } }
}
});
</script>
Use for: annual/quarterly revenue, EPS, EBITDA trends over time.
Mermaid:
xychart-beta
title "Revenue & Net Income (USD Billions)"
x-axis [2020, 2021, 2022, 2023, 2024]
y-axis "USD Billions" 0 --> 500
bar [274, 365, 394, 383, 391]
line [57, 95, 100, 97, 94]
ASCII fallback:
Revenue (B$) │▓▓▓▓▓▓▓▓▓▓ 274
│▓▓▓▓▓▓▓▓▓▓▓▓▓▓ 365
│▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ 394
│▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ 383
│▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ 391
└─────────────────────
2020 2021 2022 2023 2024
Use for: P/E, EV/EBITDA, P/S vs. sector peers.
Mermaid:
xychart-beta horizontal
title "P/E Ratio: Company vs. Peers"
x-axis 0 --> 40
y-axis ["AAPL", "MSFT", "GOOGL", "Sector Avg"]
bar [28.5, 34.2, 22.1, 24.0]
ASCII fallback:
P/E Ratio Comparison
AAPL ████████████████████████████ 28.5
MSFT █████████████████████████████████ 34.2
GOOGL █████████████████████ 22.1
Sector ████████████████████████ 24.0
└──────────────────────────────────
0 10 20 30 40
Use for: gross margin, operating margin, net margin over time.
Mermaid:
xychart-beta
title "Margin Trends (%)"
x-axis [2020, 2021, 2022, 2023, 2024]
y-axis "Margin %" 0 --> 50
line [38.2, 41.8, 43.3, 44.1, 45.6]
line [24.1, 27.5, 29.8, 30.6, 31.2]
line [20.9, 25.9, 26.4, 25.3, 24.1]
Legend note — Line 1: Gross Margin | Line 2: Operating Margin | Line 3: Net Margin
Use for: sector weights, asset allocation, position sizing.
Mermaid:
pie title Portfolio Allocation
"Technology" : 35
"Healthcare" : 18
"Financials" : 15
"Consumer" : 12
"Energy" : 10
"Other" : 10
ASCII fallback:
Portfolio Allocation
Technology ████████████████████ 35%
Healthcare ██████████ 18%
Financials █████████ 15%
Consumer ███████ 12%
Energy ██████ 10%
Other ██████ 10%
Use for: current price vs. DCF fair value, analyst target price ranges.
ASCII (works everywhere):
Fair Value Range Analysis
─────────────────────────────────────────────
Bear Case Fair Value Bull Case
$142 ←───┼────────────┼────────────→ $285
$198 $241
Current Price: $212 ●
UNDERVALUED │ FAIRLY VALUED │ OVERVALUED
(<$198) │ ($198–$241) │ (>$241)
─────────────────────────────────────────────
Status: FAIRLY VALUED (+7% to midpoint)
Use for: combining signals from multiple analyses into one view.
Mermaid:
xychart-beta
title "Multi-Factor Signal Scores (0–10)"
x-axis ["Fundamental", "Technical", "Valuation", "Sentiment", "Macro"]
y-axis "Score" 0 --> 10
bar [7.5, 6.2, 5.8, 8.1, 6.9]
ASCII fallback:
Signal Dashboard
──────────────────────────────────────
Fundamental ████████░░ 7.5 / 10 🟢
Technical ██████░░░░ 6.2 / 10 🟡
Valuation █████░░░░░ 5.8 / 10 🟡
Sentiment ████████░░ 8.1 / 10 🟢
Macro ██████░░░░ 6.9 / 10 🟡
──────────────────────────────────────
Composite ███████░░░ 6.9 / 10 🟡 MODERATE BULLISH
Use for: key price levels, breakout zones, stop-loss placement.
ASCII:
Support & Resistance Map — AAPL
─────────────────────────────────────────────
$250 ················· Strong Resistance
$240 ┤
$235 ┤ ← Current Price: $235
$228 ─────────────────── Resistance (recent high)
$220 ┤
$215 ─────────────────── Support (MA50)
$210 ┤
$200 ━━━━━━━━━━━━━━━━━━━ Major Support (MA200 / round number)
$190 ┤
$180 ················· Bear-case support
─────────────────────────────────────────────
Upside to resistance: +$7 (+3%) Risk to support: -$20 (-9%)
Risk/Reward: 1:3 — Favorable
For clean, professional report output:
// Color palette — use consistently
const COLORS = {
price: '#3b82f6', // blue
ma50: '#f59e0b', // amber
ma200: '#ef4444', // red
bullish: 'rgba(16,185,129,0.75)', // green
bearish: 'rgba(239,68,68,0.75)', // red
neutral: 'rgba(107,114,128,0.6)', // gray
rsi: '#8b5cf6', // purple
macd: '#3b82f6',
signal: '#f59e0b',
background: '#f8fafc'
};
// Standard chart options
const BASE_OPTIONS = {
responsive: true,
plugins: {
legend: { position: 'top', labels: { font: { family: 'Inter, sans-serif', size: 12 } } },
title: { display: true, font: { family: 'Inter, sans-serif', size: 14, weight: 'bold' } }
},
scales: {
x: { grid: { color: 'rgba(0,0,0,0.05)' } },
y: { grid: { color: 'rgba(0,0,0,0.05)' } }
}
};
When given financial data or an analysis to visualize:
Always end with the standard signal block:
╔══════════════════════════════════════════════╗
║ INVESTMENT SIGNAL ║
╠══════════════════════════════════════════════╣
║ Signal: BULLISH / NEUTRAL / BEARISH ║
║ Confidence: HIGH / MEDIUM / LOW ║
║ Horizon: SHORT / MEDIUM / LONG-TERM ║
║ Score: X.X / 10 ║
╠══════════════════════════════════════════════╣
║ Action: BUY / HOLD / SELL ║
║ Conviction: STRONG / MODERATE / WEAK ║
╚══════════════════════════════════════════════╝
Score Guide: 8.0–10.0 Strongly Bullish | 6.0–7.9 Moderately Bullish | 4.0–5.9 Neutral | 2.0–3.9 Moderately Bearish | 0.0–1.9 Strongly Bearish Confidence: HIGH (strong data, clear signals) | MEDIUM (mixed signals) | LOW (limited data, conflicting signals) Horizon: SHORT-TERM (1 week–3 months) | MEDIUM-TERM (3 months–1 year) | LONG-TERM (1+ years)
Disclaimer: Educational analysis only. Not financial advice.
npx claudepluginhub alannesta/investskill --plugin us-stock-analysisGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
2plugins reuse this skill
First indexed Jul 17, 2026