Skills › Finance › Technical Indicator Scan
Technical Indicator Scan
Run technical analysis on a set of tickers and get a plain-language summary of their current signals.
Superpowers: handler_finance · handler_generate
When to use: You want to understand the technical picture for a set of stocks before making a trade decision.
Steps
Get the quote and basic market data
Superpower: handler_finance — live API reference →
POST /v2/superpowers/handler_finance
{
"task": "quote",
"symbol": "NVDA"
}
Get technical indicators
Superpower: handler_finance — live API reference →
POST /v2/superpowers/handler_finance
{
"task": "indicators",
"symbol": "NVDA",
"indicator": "sma"
}
Also run with indicator: "ema" for exponential moving averages.
Interpret the signals in plain language
Superpower: handler_generate — live API reference →
POST /v2/superpowers/handler_generate
{
"task": "chat",
"prompt": "You are a technical analyst. Given this market data and indicator readings for [Ticker], summarise: (1) Trend direction (uptrend/downtrend/sideways), (2) Key support and resistance levels from the data, (3) What the moving averages suggest, (4) Bullish vs bearish signals, (5) One-sentence trading outlook. Data: [steps 1-2]"
}
From previous step: quote (step 1) + indicator data (step 2) → inject
Outcome: Plain-language technical analysis: trend, support/resistance, indicator signals, and trading outlook.
Fetch this skill via API
GET /v2/skills/technical-indicator-scan
Authorization: Bearer sk-hndlr-...