TraderMade
tradermade.com › blog › introducing-tradermade-websocket-V2
Introducing TraderMade's New WebSocket Server | Real-Time Market Data
April 20, 2026 - Explore TraderMade’s latest changes: WebSocket V2 with 40% lower latency, weekend crypto data, MCP Server for AI workflows, and a new business signup experience.
TraderMade
tradermade.com › docs › streaming-data-api
Websockets Documentation | Streaming Data API
WebSocket is a bidirectional protocol to get real-time data to help you build applications that require low-latency data. The TraderMade WebSocket API provides a simple implementation with easy setup in minutes.
Videos
07:38
Building an Automated Trading Bot with Python and Real-Time Market ...
14:16
Real-Time Streaming Stock Market Data with Python and Websockets ...
16:52
Using WebSockets to Execute Real-Time Algorithmic Trades - YouTube
12:31
Streaming Quotes via WebSocket | Algorithmic Trading & Investing ...
GitHub
github.com › tradermade › NodeJs-Websocket-Client
GitHub - tradermade/NodeJs-Websocket-Client: Get Forex Data with NodeJS Server · GitHub
You can start a 14-day free trial at https://marketdata.tradermade.com/myAccount to test the websocket client with TraderMade or use this with other streaming websocket server.
Author tradermade
TraderMade
tradermade.com › forex-data-feed
High Quality Intraday FX Feed | TraderMade
from tradermade import stream def print_message(data): print(f"Received: {data}") api_key = "api_key" # set streaming key - not the same as rest API key stream.set_ws_key(api_key) stream.set_symbols("USDJPY,EURGBP") # Set the callback for receiving messages stream.stream_data(print_message) stream.connect() const WebSocket = require ('ws'); var reconnectInterval = 1000 * 10 var ws; var connect = function(){ const ws = new WebSocket ('wss://marketdata.tradermade.com/feedadv'); ws.on('open', function open() { ws.send("{\"userKey\":\"streaming_api_key\", \"symbol\":\"GBPUSD\"}"); }); ws.on('close', function() { console.log('socket close : will reconnect in ' + reconnectInterval ); setTimeout(connect, reconnectInterval) }); ws.on('message', function incoming(data) { console.log(data); }); }; connect();
TraderMade
tradermade.com
FX, CFD and Crypto Data APIs | TraderMade
Access real-time and historical rates for wide ranging financial markets via WebSocket and REST APIs.
GitHub
github.com › tradermade › CPP-WebSocket-Client-
GitHub - tradermade/CPP-WebSocket-Client-: Build Your First C++ WebSocket Client to Pull Real Time Forex Data
Build Your First C++ WebSocket Client to Pull Real-Time Forex Data · You can start a 14-day free trial at https://marketdata.tradermade.com/myAccount to test the WebSocket client with TraderMade or use this with other streaming web socket servers.
Author tradermade
TraderMade
tradermade.com › streaming-fx › currencies-list
Available Currencies List for Websockets | TraderMade
List of supported currencies for real-time data via the websocket API