How this skill is triggered — by the user, by Claude, or both
Slash command
/tvremix:momentumThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Assess momentum for: `$ARGUMENTS`
Assess momentum for: $ARGUMENTS
Before starting, read ../mcp-tools.md and ../presentation.md.
If the user gave a bare ticker, use mcp__tvremix__search_symbols to get EXCHANGE:SYMBOL.
mcp__tvremix__analyze_multi_timeframe(symbol=<SYMBOL>, timeframes=["15m","1h","4h","1D","1W"])
mcp__tvremix__get_ohlcv(symbol=<SYMBOL>, interval="1D", count=200, summary=False)
mcp__tvremix__get_quote(symbol=<SYMBOL>)
analyze_multi_timeframe returns RSI / MACD / Stochastic / ADX / aggregated rating per TF. get_ohlcv gives you the bars you need for volume analysis. get_quote gives current price, change%, and volume-vs-average.
For each of the five timeframes, score momentum as one of: strong bullish / bullish / neutral / bearish / strong bearish. The cues:
Display as a compact table:
| TF | RSI | MACD | ADX | Rating | Read |
|---|---|---|---|---|---|
| 15m | … | … | … | … | … |
| … | … | … | … | … | … |
From the daily get_ohlcv output, check the last 5–10 bars' volume vs the 20-bar average (summary.avg_volume from the tool output). Is recent volume supporting the price move, or fading?
Look at the last ~30 daily bars. Are new price highs being made without matching new RSI highs (bearish divergence) or new price lows without new RSI lows (bullish divergence)? Call it out if present. If no clear divergence, say "no notable divergence".
From the 1D technicals, note where current price sits relative to the 20 / 50 / 200 SMA. "Above all three, 50>200" → golden-cross territory. "Below 50, above 200" → pullback in uptrend. Etc.
End with a single paragraph that delivers:
/tvremix:smc or /tvremix:swing if structure work is the next step.analyze_multi_timeframe already has RSI for 4h, don't re-fetch it via get_technicals.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub tvremix/claude-plugin --plugin tvremix