Technical Indicators (FinBridge DB)
get_technicalsLatest technical-indicator snapshot for a single KR or US company from the local finbridge database (indicators_latest, refreshed by the nightly 'indicators' ingest from daily prices), plus an optional on-demand historical series and a plain-language signal summary.
Indicators: SMA 5/20/60/120, EMA 12/26, RSI(14, Wilder), MACD(12,26,9), Bollinger(20,2), ATR(14), 52-week high/low and % distance, returns over 1/5/20/60/120/250 trading days, 20-day volume ratio, above-SMA20/60 flags, and SMA20xSMA60 golden/dead cross (within the last 3 sessions).
Args:
company: US ticker (e.g. 'AAPL'), KR 6-digit stock code (e.g. '005930'), or company name. Resolution: exact ticker > 6-digit code > exact name > partial name.
history: 0-250 (default 0). 0 = latest snapshot only; >0 recomputes the last N sessions of close/sma20/sma60/rsi14/macd on the fly (not stored).
response_format: 'markdown' (default) or 'json'.
Returns: {company:{name,source,ticker|stock_code}, as_of, indicators:{...all snapshot fields...}, signals:[text], history:[{date,close,sma20,sma60,rsi14,macd}], notes}.
Examples:
{company: 'AAPL'} -> Apple's latest snapshot + signal summary
{company: '005930', history: 60} -> Samsung Electronics snapshot + last 60 sessions of sma/rsi/macd
Use when: reading one company's momentum/trend/overbought-oversold state, or charting an indicator series. Don't use to rank many companies (use screen_technical) or for live intraday quotes (use the live-source tools). Notes: KR/US/TW prices are adjusted for corporate actions but not dividends (indicators around dividend events may be slightly distorted); US history starts 2023-03-28 (volume from 2024-07-01) so long-window figures are shallower there. Market data, not investment advice. Errors: unknown company -> no-match/candidate-list error; 'No technical snapshot' -> no indicator row for this company, with a market-specific reason (JP/EU carry no prices; new listing or delisted elsewhere).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company | Yes | US ticker (e.g. 'AAPL'), KR 6-digit stock code (e.g. '005930'), or company name | |
| history | No | 0 = latest snapshot only; 1-250 = also return that many recent sessions of close/sma20/sma60/rsi14/macd | |
| response_format | No | 'markdown' for tables, 'json' for compact machine-readable output | markdown |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| as_of | No | ||
| notes | No | ||
| company | Yes | ||
| history | No | ||
| signals | No | ||
| indicators | Yes |