fetch_economic_calendar
Fetch Economic Calendar
Type:
fetch_economic_calendar
• Category:flow
• Tags:economic
,calendar
,data
,mongo
Description
Fetch economic calendar events
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
events | autocomplete | Select one or more events | no | |
countries | autocomplete | Select one or more countries | no | |
impact | string | Impact level (0 to 3 stars) | no | "*" |
dateFrom | date | Start ISO datetime (inclusive) | no | |
dateTo | date | End ISO datetime (inclusive) | no | |
limit | number | Max docs (1-200) | no | 50 |
sortMode | string | Sorting order | no | "date_desc" |
Help
Overview
This worker retrieves economic calendar events based on a set of optional filters. By specifying the desired event types, countries, impact levels, date range, and sorting preferences, you can obtain a concise list of upcoming or past releases that are relevant to your analysis.
Inputs
- events – autocomplete – Choose one or more specific economic calendar events (e.g., “GDP”, “CPI”, “Employment”).
- countries – autocomplete – Select one or more countries whose events you want to include (e.g., “United States”, “Germany”).
- impact – string, default
"*"
– Impact level of the event, expressed as 0‑3 stars."*"
returns events of any impact. - dateFrom – date – ISO‑8601 datetime marking the inclusive start of the query period.
- dateTo – date – ISO‑8601 datetime marking the inclusive end of the query period.
- limit – number, default
50
– Maximum number of event records to return; must be between 1 and 200. - sortMode – string, default
"date_desc"
– Determines the order of the results."date_desc"
sorts newest first, while"date_asc"
sorts oldest first.
Minimal Example
Fetch the next 30 high‑impact events for the United States and the United Kingdom, starting today and sorted by the earliest date:
events: “GDP, CPI”
countries: “United States, United Kingdom”
impact: “3”
dateFrom: “2025-10-15