π¦ ClawHub
Economic Calendar Pro
by @youpele52
Run a local script to fetch economic calendar events for a date range. Defaults to 7 days inclusive from the query day. Uses TradingEconomics when TRADING_EC...
TERMINAL
clawhub install economic-calendar-proπ About This Skill
name: economic-calendar-pro description: "Run a local script to fetch economic calendar events for a date range. Defaults to 7 days inclusive from the query day. Uses TradingEconomics when TRADING_ECONOMICS_API_KEY is present and falls back to Yahoo Finance otherwise." homepage: https://docs.tradingeconomics.com/economic_calendar/snapshot/ metadata: {"clawdbot":{"emoji":"ποΈ","requires":{"bins":["uv"]}}}
Skill: Economic Calendar
When to use
When NOT to use
market-news-briefstock-price-checker-prostock-fundamentalsAuthentication
TRADING_ECONOMICS_API_KEY to your TradingEconomics credential stringclient:secret.env.example to .env at the repo root and fill in TRADING_ECONOMICS_API_KEYUS, EU, or JPCommands
Get the default calendar window
uv run /root/.openclaw/workspace/skills/economic-calendar-pro/src/main.py
Defaults to 7 days inclusive from the query day.
Get a custom calendar window
uv run /root/.openclaw/workspace/skills/economic-calendar-pro/src/main.py
Dates must use YYYY-MM-DD.
Examples
# Default window: query day plus the next 6 days
uv run /root/.openclaw/workspace/skills/economic-calendar-pro/src/main.pyStart from a specific day and use 7 days inclusive
uv run /root/.openclaw/workspace/skills/economic-calendar-pro/src/main.py 2026-03-10Explicit date range
uv run /root/.openclaw/workspace/skills/economic-calendar-pro/src/main.py 2026-03-10 2026-03-24
Output
The command returns:
TradingEconomics API or Yahoo Finance fallback)Notes
TRADING_ECONOMICS_API_KEY from the environment first..env file before falling back to Yahoo Finance.economic-calendar-pro.sh wrapper in normal skill execution - call uv run src/main.py directly as shown above.β‘ When to Use
π‘ Examples
# Default window: query day plus the next 6 days
uv run /root/.openclaw/workspace/skills/economic-calendar-pro/src/main.pyStart from a specific day and use 7 days inclusive
uv run /root/.openclaw/workspace/skills/economic-calendar-pro/src/main.py 2026-03-10Explicit date range
uv run /root/.openclaw/workspace/skills/economic-calendar-pro/src/main.py 2026-03-10 2026-03-24
π Tips & Best Practices
TRADING_ECONOMICS_API_KEY from the environment first..env file before falling back to Yahoo Finance.economic-calendar-pro.sh wrapper in normal skill execution - call uv run src/main.py directly as shown above.