REST API
Typed signal snapshots and history
Connect versioned Metrivane signals, confidence intervals, factor contributions, and forecast revisions to research dashboards and market-analysis workflows.
Typed signal snapshots and history
Revision and release events
Research-grade update channels
Source and model metadata
Use Metrivane as an economic research layer alongside charting and execution platforms. Integrations expose context and evidence—not BUY or SELL commands.
Publish selected economic signals as TradingView-compatible indicators. A webhook bridge can receive forecast revisions and update a Pine Script input or external data panel.
// Metrivane economic context
indicator("Metrivane Trade Pulse", overlay=false)
// Example value supplied by the connector
tradePulse = input.float(-4.8, "Trade Pulse")
plot(tradePulse, color=color.aqua, linewidth=2)
hline(0, "Neutral", color=color.gray)Query Metrivane from a MetaTrader 5 Expert Advisor through a local REST bridge. Signals remain separate from order execution and include timestamp, uncertainty, and provenance.
// Request latest economic signal snapshot
MetrivaneSignal signal;
if (client.GetSignal("west-coast-trade-pulse", signal)) {
Print("Estimate: ", signal.value);
Print("Confidence: ", signal.confidence);
Print("Model version: ", signal.model_version);
}The API delivers observations and economic forecasts. How they are interpreted remains an explicit downstream research decision.
Signal values, intervals, revisions, factors and provenance
Visualization, comparison and research workflow
Independent interpretation with controls and limitations
API credentials and signed connector packages will be distributed with the desktop research preview. All integrations shown here are illustrative.
TradingView and MetaTrader are trademarks of their respective owners. Metrivane is not affiliated with or endorsed by either platform. Integration concepts shown here do not constitute investment advice.