FRED Macro Data¶
LumiBot includes native Federal Reserve Economic Data (FRED) macro tools for strategies and AI agents. Use these tools for interest rates, inflation, employment, growth, liquidity, credit spreads, and market-risk context.
Strategy API¶
self.macro.list_series()
self.macro.get_series("DGS10")
self.macro.get_latest("UNRATE")
self.macro.get_snapshot(["FEDFUNDS", "DGS10", "CPIAUCSL", "UNRATE"])
Agent Tools¶
Agents receive these built-ins automatically:
list_fred_seriesget_fred_seriesget_fred_latestget_fred_snapshot
These tools are available to read-only research agents and trading-enabled portfolio agents. They do not submit, cancel, or modify orders.
API Key Behavior¶
FRED_API_KEY is required for the official FRED/ALFRED API path and for
all macro data fetches. LumiBot uses the official API path instead of public
CSV fallbacks so tool output has a clear provenance and backtests can request
point-in-time vintage observations.
With a key, LumiBot passes realtime_start and realtime_end based on the
strategy datetime so the backtest sees the vintage observations that were
available at that time.
Built-in FRED agent tools are hidden during backtests unless FRED_API_KEY is
configured. This prevents agents from accidentally using macro data without a
point-in-time data contract in historical simulations.
Backtest Date Safety¶
In a backtest, as_of defaults to self.get_datetime().
LumiBot always filters observations to observation_date <= as_of and
requests the vintage data known as of that date through the official API.
Cache¶
FRED data is cached under ~/.lumibot/cache/fred by default. Override this
with LUMIBOT_FRED_CACHE_DIR.