{"id":2653,"date":"2026-08-26T15:57:24","date_gmt":"2026-08-26T13:57:24","guid":{"rendered":"https:\/\/eodhd.com\/financial-apis-blog\/?p=2653"},"modified":"2026-08-26T16:01:27","modified_gmt":"2026-08-26T14:01:27","slug":"real-time-feed-major-update","status":"publish","type":"post","link":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update","title":{"rendered":"Stock Real-time Feed: Major Update"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The real-time WebSocket feed has had its biggest update since launch. Here is what is new, all of it live today:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>European equities<\/strong> \u2014 roughly <strong>9,400 symbols across 18 markets<\/strong>, trades and quotes from Cboe Europe on two new endpoints, with quotes consolidated across the BXE, CXE and DXE books<\/li>\n\n\n\n<li><strong>One-minute bars<\/strong> \u2014 OHLCV bars built for you, for both US and European equities, so you no longer have to aggregate the tick stream yourself<\/li>\n\n\n\n<li><strong>Trading status and halts<\/strong> \u2014 the venue&#8217;s own status for an individual instrument, on its own stream<\/li>\n\n\n\n<li><strong>REST backfill<\/strong> \u2014 a single request that returns the recent closed minute bars for a symbol, to fill the gap after a dropped connection<\/li>\n\n\n\n<li><strong>Documented data provenance<\/strong> \u2014 exactly which venue each feed comes from, and what that does and does not include. On the US side that is about <strong>12,700 symbols<\/strong> in a normal session<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you already stream real-time data from us, nothing you have built changes. The connection flow, the subscribe message and the payload shapes are the same \u2014 there are simply more markets to subscribe to. The rest of this post covers each item, and closes with three details that save a support ticket.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 id=\"h-european-equities-straight-from-cboe-europe\" class=\"wp-block-heading\">European equities, straight from Cboe Europe<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Two new endpoints carry European trades and quotes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wss:\/\/ws.eodhistoricaldata.com\/ws\/eu?api_token=YOUR_API_KEY\nwss:\/\/ws.eodhistoricaldata.com\/ws\/eu-quote?api_token=YOUR_API_KEY<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">They use exactly the same message schemas as the US streams. Only the symbol format differs: European instruments use the TICKER.EXCHANGE form you already use elsewhere in the API, so SHEL.LSE, SAP.XETRA and ASML.AS all work as written.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Coverage spans <strong>18 European markets<\/strong> and, measured on a normal trading session, about <strong>9,400 symbols<\/strong> \u2014 London, XETRA, the Euronext venues, the Nordic exchanges, Madrid, Milan, Vienna, Warsaw and more. Symbols that do not trade on a given day simply do not appear in that day&#8217;s stream, so the count over a longer window is slightly higher.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">One detail is worth calling out, because it is a genuine difference from the US side. European quotes are a <strong>consolidated best bid and offer across the Cboe Europe books<\/strong> \u2014 BXE, CXE and DXE. The best price wins, and where two books show the same price their sizes are added, so the size you see is the depth available at that price across the venues we carry. The US quote stream is a single-venue top of book, which brings us to the next point.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 id=\"h-what-the-us-feed-is-precisely\" class=\"wp-block-heading\">What the US feed is, precisely<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">We would rather you learn this from us than from a reconciliation report. US trades and quotes come from <strong>Cboe EDGX<\/strong>, one of Cboe&#8217;s four US equity exchanges. That means:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Trades are executions that occurred on EDGX. This is <strong>not<\/strong> a consolidated SIP tape, so it does not include executions from other exchanges, or off-exchange and FINRA TRF prints.<\/li>\n\n\n\n<li>Quotes are the EDGX top of book with sizes \u2014 not a national best bid and offer aggregated across venues.<\/li>\n\n\n\n<li>Because there is no off-exchange activity in a single lit venue, the dark-pool flag is always false, and the trade-conditions array is always empty: the exchange top-of-book source does not carry per-trade sale conditions.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">On a normal session the US stream carries about <strong>12,700 symbols<\/strong>. None of the above makes the feed less useful \u2014 it makes it exchange-grade and predictable. But if you are comparing our prints against a consolidated tape, this is the reason the two will not match tick for tick.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 id=\"h-minute-bars-without-building-them-yourself\" class=\"wp-block-heading\">Minute bars, without building them yourself<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Aggregating a tick stream into one-minute bars is the first thing almost everyone writes after connecting, and the easiest place to get subtly wrong. Two new streams do it for you:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wss:\/\/ws.eodhistoricaldata.com\/ws\/us-candles?api_token=YOUR_API_KEY\nwss:\/\/ws.eodhistoricaldata.com\/ws\/eu-candles?api_token=YOUR_API_KEY<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"json\" class=\"language-json\">{\n\"s\": \"AAPL\",             \/\/ ticker\n\"i\": \"1m\",               \/\/ bar interval\n\"t\": 1787671260000,      \/\/ bar OPEN time, epoch ms UTC\n\"o\": 309.25,             \/\/ open\n\"h\": 309.26,             \/\/ high\n\"l\": 309.19,             \/\/ low\n\"c\": 309.19,             \/\/ close\n\"v\": 1101                \/\/ volume in shares within the bar\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Two things to know before you wire this up. The field <strong>c<\/strong> is the close price here, whereas on the trade streams <strong>c<\/strong> is the conditions array \u2014 same letter, different meaning. And the current bar is <strong>re-sent every time it changes<\/strong>, so the same timestamp will arrive repeatedly with a growing volume until the minute rolls over. Treat the newest message for a given timestamp as authoritative rather than adding them together.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 id=\"h-trading-status-and-halts\" class=\"wp-block-heading\">Trading status and halts<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A separate pair of streams reports the venue&#8217;s own status for an individual instrument, which is different from the market status field carried inside each trade. That field tells you which session the market is in; this stream tells you what is happening to one symbol.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wss:\/\/ws.eodhistoricaldata.com\/ws\/us-status?api_token=YOUR_API_KEY\nwss:\/\/ws.eodhistoricaldata.com\/ws\/eu-status?api_token=YOUR_API_KEY<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">While an instrument is trading normally you will see the status T. Other codes are issued by the venue when an instrument is halted, paused or in an auction \u2014 so treat anything other than T as a signal to stop relying on the last price until it returns.<\/p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\"><a class=\"maxbutton-1 maxbutton maxbutton-get-the-plugin\" target=\"_blank\" rel=\"nofollow noopener\" href=\"https:\/\/wordpress.org\/plugins\/live-stock-prices-for-wordpress\/\"><span class='mb-text'>GET WP PLUGIN<\/span><\/a><\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 id=\"h-filling-the-gap-after-a-reconnect\" class=\"wp-block-heading\">Filling the gap after a reconnect<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Sockets drop. When yours does, you no longer have to wait for the streams to rebuild before your charts are whole again:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>GET https:\/\/ws.eodhistoricaldata.com\/history?market=us&amp;symbol=AAPL&amp;api_token=YOUR_API_KEY<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">It returns the recent closed one-minute bars for a single symbol, oldest first, in the same shape as the minute-bar stream. The market parameter takes us or eu, and the symbol takes the same form you would subscribe with.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Note that only minutes in which the symbol actually traded produce a bar, so for a less active name the result is sparse rather than one bar per consecutive minute. An unknown market or symbol returns an empty array rather than an error, as do forex and crypto, which keep no bars.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 id=\"h-three-things-that-save-a-support-ticket\" class=\"wp-block-heading\">Three things that save a support ticket<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Error frames come in two shapes.<\/strong> An authentication failure uses the key <strong>status<\/strong>, and it arrives over the socket <em>after<\/em> a successful handshake \u2014 so the connection opening is not proof that your token was accepted. Every other frame uses <strong>status_code<\/strong>. If you write one parser keyed on status_code, an auth denial will reach your data callback looking like a tick.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Unrecognised symbols are ignored silently.<\/strong> There is no error for a symbol that is unknown or in the wrong format for the market \u2014 it simply never streams. If one symbol arrives and others stay quiet, check the format of the quiet ones first: US tickers are plain, European tickers carry the exchange suffix.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>European dual-class tickers answer under their canonical name.<\/strong> Names like ERIC-B.ST work as written, and the un-hyphenated form is accepted too \u2014 but every message reports the canonical hyphenated ticker in the symbol field, whichever spelling you subscribed with. Key your state on what arrives, not on the string you sent.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You may also hold up to 64 concurrent connections per API token, shared across every market, which is plenty for a socket per stream and a comfortable margin for reconnects.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 id=\"h-availability\" class=\"wp-block-heading\">Availability<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Real-time data is included in the paid <strong>EOD+Intraday<\/strong> and <strong>ALL-IN-ONE<\/strong> plans, and streaming does not consume your REST API call allowance. The full reference \u2014 every endpoint, all message schemas, the error table and the symbol formats \u2014 lives in the <a href=\"https:\/\/eodhd.com\/financial-apis\/new-real-time-data-api-websockets\">real-time WebSocket documentation<\/a>.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n","protected":false},"excerpt":{"rendered":"<p>The real-time WebSocket feed has had its biggest update since launch. Here is what is new, all of it live today: If you already stream real-time data from us, nothing you have built changes. The connection flow, the subscribe message and the payload shapes are the same \u2014 there are&#8230;<\/p>\n","protected":false},"author":6,"featured_media":2652,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4],"tags":[509,508,507],"class_list":["post-2653","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-announcement","tag-candles","tag-eu","tag-websocket","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Stock Real-time Feed: Major Update | EODHD APIs Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Stock Real-time Feed: Major Update\" \/>\n<meta property=\"og:description\" content=\"The real-time WebSocket feed has had its biggest update since launch. Here is what is new, all of it live today: European equities \u2014 roughly 9,400 symbols\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update\" \/>\n<meta property=\"og:site_name\" content=\"Financial Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/eodhistoricaldata\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-26T13:57:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-26T14:01:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2244\" \/>\n\t<meta property=\"og:image:height\" content=\"871\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"EODHD Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@EOD_data\" \/>\n<meta name=\"twitter:site\" content=\"@EOD_data\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"EODHD Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#article\",\"isPartOf\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update\"},\"author\":{\"name\":\"EODHD Team\",\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/#\/schema\/person\/9a841715c0edd2db5e57b7a76276e1f8\"},\"headline\":\"Stock Real-time Feed: Major Update\",\"datePublished\":\"2026-08-26T13:57:24+00:00\",\"dateModified\":\"2026-08-26T14:01:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update\"},\"wordCount\":1135,\"publisher\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#primaryimage\"},\"thumbnailUrl\":\"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png\",\"keywords\":[\"candles\",\"eu\",\"websocket\"],\"articleSection\":[\"Announcement\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update\",\"url\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update\",\"name\":\"Stock Real-time Feed: Major Update | EODHD APIs Blog\",\"isPartOf\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#primaryimage\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#primaryimage\"},\"thumbnailUrl\":\"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png\",\"datePublished\":\"2026-08-26T13:57:24+00:00\",\"dateModified\":\"2026-08-26T14:01:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#primaryimage\",\"url\":\"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png\",\"contentUrl\":\"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png\",\"width\":2244,\"height\":871},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/eodhd.com\/financial-apis-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Stock Real-time Feed: Major Update\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/#website\",\"url\":\"https:\/\/eodhd.com\/financial-apis-blog\/\",\"name\":\"Financial APIs Blog | EODHD\",\"description\":\"Financial Data APIs. Fundamental, End of Day (EOD), Real-Time\/Live.\",\"publisher\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/#organization\"},\"alternateName\":\"EODHD Financial Data APIs Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/eodhd.com\/financial-apis-blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/#organization\",\"name\":\"EODHD (EOD Historical Data)\",\"url\":\"https:\/\/eodhd.com\/financial-apis-blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png\",\"contentUrl\":\"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png\",\"width\":159,\"height\":82,\"caption\":\"EODHD (EOD Historical Data)\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/eodhistoricaldata\",\"https:\/\/x.com\/EOD_data\",\"https:\/\/www.reddit.com\/r\/EODHistoricalData\/\",\"https:\/\/eod-historical-data.medium.com\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/#\/schema\/person\/9a841715c0edd2db5e57b7a76276e1f8\",\"name\":\"EODHD Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-apis-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/020e454749b61223b72b1bf96e7978ccdd1e39b04585b29698da3767a193a57d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/020e454749b61223b72b1bf96e7978ccdd1e39b04585b29698da3767a193a57d?s=96&d=mm&r=g\",\"caption\":\"EODHD Team\"},\"url\":\"https:\/\/eodhd.com\/financial-apis-blog\/author\/a-pletnev\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Stock Real-time Feed: Major Update | EODHD APIs Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update","og_locale":"en_US","og_type":"article","og_title":"Stock Real-time Feed: Major Update","og_description":"The real-time WebSocket feed has had its biggest update since launch. Here is what is new, all of it live today: European equities \u2014 roughly 9,400 symbols","og_url":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update","og_site_name":"Financial Blog","article_publisher":"https:\/\/www.facebook.com\/eodhistoricaldata","article_published_time":"2026-08-26T13:57:24+00:00","article_modified_time":"2026-08-26T14:01:27+00:00","og_image":[{"width":2244,"height":871,"url":"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png","type":"image\/png"}],"author":"EODHD Team","twitter_card":"summary_large_image","twitter_creator":"@EOD_data","twitter_site":"@EOD_data","twitter_misc":{"Written by":"EODHD Team","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#article","isPartOf":{"@id":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update"},"author":{"name":"EODHD Team","@id":"https:\/\/eodhd.com\/financial-apis-blog\/#\/schema\/person\/9a841715c0edd2db5e57b7a76276e1f8"},"headline":"Stock Real-time Feed: Major Update","datePublished":"2026-08-26T13:57:24+00:00","dateModified":"2026-08-26T14:01:27+00:00","mainEntityOfPage":{"@id":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update"},"wordCount":1135,"publisher":{"@id":"https:\/\/eodhd.com\/financial-apis-blog\/#organization"},"image":{"@id":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#primaryimage"},"thumbnailUrl":"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png","keywords":["candles","eu","websocket"],"articleSection":["Announcement"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update","url":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update","name":"Stock Real-time Feed: Major Update | EODHD APIs Blog","isPartOf":{"@id":"https:\/\/eodhd.com\/financial-apis-blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#primaryimage"},"image":{"@id":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#primaryimage"},"thumbnailUrl":"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png","datePublished":"2026-08-26T13:57:24+00:00","dateModified":"2026-08-26T14:01:27+00:00","breadcrumb":{"@id":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#primaryimage","url":"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png","contentUrl":"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png","width":2244,"height":871},{"@type":"BreadcrumbList","@id":"https:\/\/eodhd.com\/financial-apis-blog\/real-time-feed-major-update#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eodhd.com\/financial-apis-blog\/"},{"@type":"ListItem","position":2,"name":"Stock Real-time Feed: Major Update"}]},{"@type":"WebSite","@id":"https:\/\/eodhd.com\/financial-apis-blog\/#website","url":"https:\/\/eodhd.com\/financial-apis-blog\/","name":"Financial APIs Blog | EODHD","description":"Financial Data APIs. Fundamental, End of Day (EOD), Real-Time\/Live.","publisher":{"@id":"https:\/\/eodhd.com\/financial-apis-blog\/#organization"},"alternateName":"EODHD Financial Data APIs Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eodhd.com\/financial-apis-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/eodhd.com\/financial-apis-blog\/#organization","name":"EODHD (EOD Historical Data)","url":"https:\/\/eodhd.com\/financial-apis-blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-apis-blog\/#\/schema\/logo\/image\/","url":"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png","contentUrl":"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png","width":159,"height":82,"caption":"EODHD (EOD Historical Data)"},"image":{"@id":"https:\/\/eodhd.com\/financial-apis-blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/eodhistoricaldata","https:\/\/x.com\/EOD_data","https:\/\/www.reddit.com\/r\/EODHistoricalData\/","https:\/\/eod-historical-data.medium.com\/"]},{"@type":"Person","@id":"https:\/\/eodhd.com\/financial-apis-blog\/#\/schema\/person\/9a841715c0edd2db5e57b7a76276e1f8","name":"EODHD Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-apis-blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/020e454749b61223b72b1bf96e7978ccdd1e39b04585b29698da3767a193a57d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/020e454749b61223b72b1bf96e7978ccdd1e39b04585b29698da3767a193a57d?s=96&d=mm&r=g","caption":"EODHD Team"},"url":"https:\/\/eodhd.com\/financial-apis-blog\/author\/a-pletnev"}]}},"jetpack_featured_media_url":"https:\/\/eodhd.com\/financial-apis-blog\/wp-content\/uploads\/2026\/08\/realtime-europe-banner.png","jetpack_shortlink":"https:\/\/wp.me\/p9Nz7H-GN","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/posts\/2653","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/comments?post=2653"}],"version-history":[{"count":3,"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/posts\/2653\/revisions"}],"predecessor-version":[{"id":2656,"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/posts\/2653\/revisions\/2656"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/media\/2652"}],"wp:attachment":[{"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/media?parent=2653"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/categories?post=2653"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis-blog\/wp-json\/wp\/v2\/tags?post=2653"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}