TradingView Quote + TA Batch
Pricing
from $2.00 / 1,000 quote + ta cards
TradingView Quote + TA Batch
Batch quotes and technical-analysis summaries for a symbol list. Portfolio checks and agent research packs.
Pricing
from $2.00 / 1,000 quote + ta cards
Rating
0.0
(0)
Developer
barry Alan
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Batch-fetch last quotes and optional technical-analysis summaries for a list of symbols. One Dataset row per ticker.
Useful for portfolio checks, pre-market packs, and AI agents. Powered by TradingView Data API (POST /api/quote/batch + GET /api/ta/{symbol}). Not official TradingView. Not a WebSocket stream.
What you get
You pass many symbols; the Actor:
- Splits them into chunks of 10 (upstream quote-batch limit).
- Optionally fetches a multi-timeframe TA summary per symbol (
1,5,15,60,120,240,1D,1W,1M). - Writes one row with a flattened last price plus the raw quote and TA objects.
| Field | Meaning |
|---|---|
symbol | EXCHANGE:TICKER |
last | Last price (lp) |
changePercent | Change % (chp) |
quote | Full quote payload |
ta | TA summary by timeframe (or null if includeTa is false) |
error | Set if TA (or the row) failed; quote may still be present |
scrapedAt | ISO timestamp |
TA here is a signal summary (oscillators / moving averages style scores), not OHLCV candles. Use a price/OHLCV API if you need bars.
How to use
- Set
symbols(stocks, crypto, etc. inEXCHANGE:TICKERform). - Leave
includeTa=trueunless you only need last price. maxSymbolscaps the list (default 20, max 50).- Run. Download JSON / CSV / Excel, or call the Actor from Make / n8n.
Example
{"symbols": ["NASDAQ:AAPL", "NASDAQ:NVDA", "BINANCE:BTCUSDT"],"includeTa": true,"maxSymbols": 20}
Three symbols ⇒ three Dataset rows. Quotes are requested in one batch of three; TA is one request per symbol.
Input
| Field | Required | Description |
|---|---|---|
symbols | yes | EXCHANGE:TICKER list |
includeTa | no | Fetch /api/ta/{symbol} (default true) |
maxSymbols | no | Cap (default 20, max 50) |
No user API key is required.
Pricing (pay per event)
| Event | When |
|---|---|
quote-ta-card | Once per symbol written |
20 symbols ⇒ 20 events, whether or not TA is included. If a charge budget is hit, the Actor stops and keeps rows already pushed.
Limits and notes
- Quote batch is chunked at 10 symbols per upstream request.
- Quotes are delayed/snapshot, not tick-by-tick.
- TA is not full candle history.
- Not investment advice. Unofficial wrapper around TradingView Data API.
Related Actors
- Fundamentals Card — company, PE, targets, dividends
- Screener Export
- Leaderboard Snapshot
- News & Calendar Digest