TradingView News & Calendar Digest avatar

TradingView News & Calendar Digest

Pricing

from $1.00 / 1,000 news items

Go to Apify Store
TradingView News & Calendar Digest

TradingView News & Calendar Digest

Pull market news and earnings/IPO/economic calendar events into a dataset for digests and bots.

Pricing

from $1.00 / 1,000 news items

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

Pull market news and/or earnings / IPO / economic calendar events into a Dataset for digests, bots, and research agents.

Powered by TradingView Data API (GET /api/news/… and GET /api/calendar/…). Not official TradingView. Each run is a snapshot of the feed, not a live firehose.

What you get

One run can fetch news, calendar, or both. Each item becomes its own Dataset row with kind = news or calendar.

News — headlines with ids, titles, timestamps, related symbols, and story paths. Categories: general, stock, crypto, forex, futures, index, bond, etf, economic. Optionally filter with symbol.

Calendar — dated events:

calendarTypeTypical content
earningsEarnings releases (default)
economicMacro / economic calendar
ipoIPO calendar
revenueRevenue-related events

from / to are Unix seconds. If omitted, the Actor uses roughly the last 7 days through the next 14 days. Upstream windows are typically ≤ ~40 days — split long ranges into several runs.

limit is per kind (default 30, max 100). mode=both with limit=20 can write up to 40 rows (20 news + 20 calendar). It is not stuck at 5 rows; 5 was only a test input. A full earnings window can contain thousands of events upstream — raise limit or page from/to if you need more than 100.

How to use

  1. Set mode to news, calendar, or both.
  2. Pick newsCategory and/or calendarType.
  3. Set limit to how many items you want per kind (1–100).
  4. For calendar, optionally pass from and to (Unix seconds).
  5. Run or schedule. Export JSON / CSV / Excel.

Example — stock news + earnings

{
"mode": "both",
"newsCategory": "stock",
"calendarType": "earnings",
"limit": 20
}

Example — custom calendar window

{
"mode": "calendar",
"calendarType": "earnings",
"from": 1755129600,
"to": 1757808000,
"limit": 100
}

Input

FieldRequiredDescription
modeyesnews | calendar | both
newsCategorynoDefault stock
calendarTypenoearnings | economic | ipo | revenue
symbolnoOptional news symbol filter
limitnoMax items per kind (default 30, max 100)
from / tonoCalendar window as Unix seconds

No user API key is required.

Output

FieldMeaning
kindnews or calendar
newsCategory / calendarTypeEcho of the input used
scrapedAtISO timestamp for the run
(plus upstream fields)Headline, dates, symbols, forecasts, …

Pricing (pay per event)

EventWhen
digest-runOnce per news fetch and once per calendar fetch
news-itemPer news row
calendar-eventPer calendar row

mode=both, 20 + 20 items ⇒ 2× digest-run + 20× news-item + 20× calendar-event.

Limits and notes

  • News feeds move quickly; two runs a minute apart can differ by a few headlines.
  • Calendar limit caps rows billed; it does not download an entire 2,000-event window.
  • Not investment advice. Unofficial wrapper around TradingView Data API.