TradingView News & Calendar Digest
Pricing
from $1.00 / 1,000 news items
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
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
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:
calendarType | Typical content |
|---|---|
earnings | Earnings releases (default) |
economic | Macro / economic calendar |
ipo | IPO calendar |
revenue | Revenue-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
- Set
modetonews,calendar, orboth. - Pick
newsCategoryand/orcalendarType. - Set
limitto how many items you want per kind (1–100). - For calendar, optionally pass
fromandto(Unix seconds). - 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
| Field | Required | Description |
|---|---|---|
mode | yes | news | calendar | both |
newsCategory | no | Default stock |
calendarType | no | earnings | economic | ipo | revenue |
symbol | no | Optional news symbol filter |
limit | no | Max items per kind (default 30, max 100) |
from / to | no | Calendar window as Unix seconds |
No user API key is required.
Output
| Field | Meaning |
|---|---|
kind | news or calendar |
newsCategory / calendarType | Echo of the input used |
scrapedAt | ISO timestamp for the run |
| (plus upstream fields) | Headline, dates, symbols, forecasts, … |
Pricing (pay per event)
| Event | When |
|---|---|
digest-run | Once per news fetch and once per calendar fetch |
news-item | Per news row |
calendar-event | Per 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
limitcaps rows billed; it does not download an entire 2,000-event window. - Not investment advice. Unofficial wrapper around TradingView Data API.