Real-Time Market Data
For Your Trading Apps
Stream live forex, indices, and crypto prices directly from professional trading platforms. Built for developers who need reliable, low-latency market data.
Symbols
Latency
Uptime
Data Stream
Ultra Low Latency
Sub-50ms tick delivery via WebSocket. Perfect for real-time trading applications.
100+ Instruments
Forex pairs, indices, commodities, and crypto. All major markets covered.
Enterprise Security
Hashed API keys, rate limiting, audit logging, and HTTPS encryption.
Powered by PriceFeed Pro
Trading platforms, market dashboards and fintech applications that stream live forex, metals, crypto and index prices through the PriceFeed Pro real-time market data API.

Orbex Bullion
A professional-grade gold and bullion monitoring dashboard. It provides real-time "Ask" and "Bid" prices for XAU/USD (Gold Spot) alongside local rates for various weights and purities (e.g., 995, 999, and 9999). The interface also includes a world clock for trading sessions and the operational status of major global exchanges like LME, COMEX, and TOCOM.

SignalIQ
An AI-driven trading signals platform designed to provide "precision" market insights. It uses neural analysis to generate buy/sell signals for assets like Gold (XAU/USD), claiming high win rates. The UI focuses on actionable data, showing price charts, target zones, and "locked" expert opinions intended for subscribers or trial users.

TradeFlash
A gamified trading or "binary" betting interface where users wager on short-term price movements. It features a simplified "Bet Up" (Green) or "Bet Down" (Red) system with potential payouts (e.g., 1.88x). The dashboard includes a live chart, round timers, and a social element showing "Online Players" and "Live Bets" from other users.

PriceTableWidget
A multi-asset price tracking widget used for a quick overview of financial markets. It organizes data into clean rows for Forex (e.g., EUR/USD, GBP/USD), Metals, Crypto, and Futures. Each entry displays the live Bid/Ask spread and provides a direct "Buy/Sell" action button, likely intended for integration into a website or trading app.
Simple Integration
Connect in minutes with our REST API or WebSocket stream
// Connect to real-time price stream via WebSocket
// Keep your API key on the server — never expose it in client-side code
const ws = new WebSocket(
'wss://api.example.com/ws/v1/stream?api_key=' + API_KEY
);
ws.onopen = () => {
ws.send(JSON.stringify({
action: 'subscribe',
symbols: ['EURUSD', 'XAUUSD', 'BTCUSD']
}));
};
ws.onmessage = (event) => {
const msg = JSON.parse(event.data);
if (msg.type === 'tick') {
// Tick also carries broker_time, broker_tz, market_closed,
// data_stale (true if no fresh tick in ~2 min), trading_hours.
console.log(`${msg.symbol} ${msg.bid}/${msg.ask} @ ${msg.broker_time}`);
}
};Frequently asked questions
Quick answers about PriceFeed Pro's real-time forex, metals, crypto and index API.
What is PriceFeed Pro?
PriceFeed Pro is a real-time market data API and WebSocket service that streams forex, metals, crypto, and stock index prices to trading platforms, dashboards, and fintech applications. It provides live bid/ask ticks, OHLC bars across 1-minute to monthly timeframes, and broker-server time so client widgets can match the broker's session clock.
How do I subscribe to live forex prices over WebSocket?
Connect to wss://pricefeedpro.com/ws/v1/stream?api_key=YOUR_KEY and send a JSON message: {"action":"subscribe","symbols":["EURUSD","XAUUSD","BTCUSD"]}. The server pushes tick messages containing symbol, bid, ask, spread, broker_time, and a data_stale flag that goes true when no fresh tick has arrived within ~2 minutes.
How is OHLC history paginated through the REST API?
GET /api/v1/market/history/{symbol}?tf=60&from=<RFC3339>&to=<RFC3339>&limit=N returns bars newest-first, capped by limit (default 500, max 5000). To page backward through a wide window, set the next request's `to` parameter to the oldest `time` you received. There is no `page=` parameter on this endpoint — only /market/symbols and /market/specs paginate that way.
Does PriceFeed Pro support MT5 broker time zones?
Yes. Every tick and every history bar carries a broker_time field in RFC 3339 with the broker's offset (for example "2026-05-04T01:00:00+03:00" for an Athens-time MT5 server) alongside the canonical UTC time. The response root also includes broker_tz (IANA zone, e.g. "Europe/Athens") so consumers can render bars in the broker's natural session clock without repeating the conversion math.
How can I tell if a price has gone stale?
Each tick response includes data_stale (true when no fresh tick has arrived for that symbol in the last ~2 minutes) and market_closed (true when the symbol's broker schedule is outside trading hours). data_stale is decoupled from market_closed, so a frozen tick during open hours is reported correctly while a scheduled weekend is reported as market_closed=true.
Which symbols does PriceFeed Pro support?
PriceFeed Pro relays whatever symbols the connected broker source publishes — typically the full MT5 catalog: major and minor forex pairs (EUR/USD, GBP/USD, USD/JPY, EUR/JPY, etc.), metals (XAU/USD, XAG/USD), crypto (BTC/USD, ETH/USD), stock indices (NAS100, SPX500, DAX40), and CFDs. Call GET /api/v1/market/symbols to enumerate the live catalog for your source.
Ready to Get Started?
Sign up for a free account and start streaming market data in under 5 minutes.
Create Free Account