TradingView Quote + TA Batch avatar

TradingView Quote + TA Batch

Pricing

from $2.00 / 1,000 quote + ta cards

Go to Apify Store
TradingView Quote + TA Batch

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

barry Alan

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

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:

  1. Splits them into chunks of 10 (upstream quote-batch limit).
  2. Optionally fetches a multi-timeframe TA summary per symbol (1, 5, 15, 60, 120, 240, 1D, 1W, 1M).
  3. Writes one row with a flattened last price plus the raw quote and TA objects.
FieldMeaning
symbolEXCHANGE:TICKER
lastLast price (lp)
changePercentChange % (chp)
quoteFull quote payload
taTA summary by timeframe (or null if includeTa is false)
errorSet if TA (or the row) failed; quote may still be present
scrapedAtISO 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

  1. Set symbols (stocks, crypto, etc. in EXCHANGE:TICKER form).
  2. Leave includeTa = true unless you only need last price.
  3. maxSymbols caps the list (default 20, max 50).
  4. 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

FieldRequiredDescription
symbolsyesEXCHANGE:TICKER list
includeTanoFetch /api/ta/{symbol} (default true)
maxSymbolsnoCap (default 20, max 50)

No user API key is required.

Pricing (pay per event)

EventWhen
quote-ta-cardOnce 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.