my-ffcal_get_calendar_events
Retrieve ForexFactory economic calendar events for specified time periods to support trading analysis and workflow integration.
Instructions
Retrieve ForexFactory calendar events for a given time period or custom date range.Valid time_period
values include: today, tomorrow, yesterday, this_week, next_week, last_week, this_month, next_month, last_month, custom.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
start_date | No | ||
time_period | No |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "End Date"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Start Date"
},
"time_period": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Time Period"
}
},
"type": "object"
}