{"id":1687,"date":"2023-08-21T18:21:55","date_gmt":"2023-08-21T18:21:55","guid":{"rendered":"https:\/\/eodhd.com\/financial-academy\/?p=1687"},"modified":"2024-03-26T12:06:58","modified_gmt":"2024-03-26T12:06:58","slug":"how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library","status":"publish","type":"post","link":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library","title":{"rendered":"How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library"},"content":{"rendered":"\n<p>For investors, traders, financial analysts, and researchers, having access to delayed real-time data is indispensable. It allows them to stay informed about the latest market movements, track specific stock performance, and identify potential investment opportunities. While the data is not suitable for high-frequency trading or immediate decision-making, it is more than sufficient for conducting various research tasks.<\/p>\n\n\n\n\n\n\n<p>Here are some of the key ways in which delayed real-time data can be utilized for research and analysis:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Trend Analysis:<\/strong> By monitoring delayed price movements and trends, researchers can identify patterns and long-term trends in a stock&#8217;s performance. This information is valuable for making informed investment decisions based on historical price behavior.<br><\/li>\n\n\n\n<li><strong>Correlation Studies:<\/strong> Researchers can use delayed data to perform correlation studies between different stocks or other financial instruments. Understanding the relationships between various assets can help in creating diversified portfolios and managing risk effectively.<br><\/li>\n\n\n\n<li><strong>Technical Analysis:<\/strong> Technical analysts can use delayed real-time data to apply various charting techniques and technical indicators. These analyses help in predicting potential price movements and making entry or exit points for trades.<br><\/li>\n\n\n\n<li><strong>Historical Performance:<\/strong> By accessing delayed historical data, researchers can study a stock&#8217;s historical performance, evaluate past volatility, and understand how it has responded to previous market events.<br><\/li>\n\n\n\n<li><strong>Modeling and Backtesting:<\/strong> Delayed real-time data is crucial for building and testing trading models and strategies. Researchers can simulate different scenarios and assess the profitability and risk associated with their trading ideas.<br><\/li>\n\n\n\n<li><strong>Market Sentiment Analysis:<\/strong> Researchers can use delayed data in conjunction with other sources to gauge market sentiment. Understanding market sentiment can provide insights into market dynamics and potential shifts in trends.<br><\/li>\n\n\n\n<li><strong>Educational Purposes:<\/strong> Delayed real-time data is an excellent resource for educational purposes. Students, aspiring traders, and researchers can use this data to learn about financial markets, practice analysis, and refine their skills. <\/li>\n<\/ol>\n\n\n\n<p>It is important to reiterate that while delayed real-time data is immensely valuable for research and analysis, it should be used appropriately and in context. Traders looking for immediate data for high-frequency trading strategies should explore other real-time data sources. Additionally, researchers should always consider the delay factor when interpreting and using the data for decision-making.<\/p>\n\n\n\n<p>In this article, we have explored how to access real-time data (delayed by 15 minutes) using the official EODHD APIs Python financial library. Although the data comes with a slight delay, it remains incredibly valuable for conducting research and performing thorough analysis.<\/p>\n\n\n\n<p class=\"has-text-align-center\"><a class=\"maxbutton-1 maxbutton maxbutton-subscribe-to-api external-css btn\" href=\"https:\/\/eodhd.com\/register\"><span class='mb-text'>Register &amp; Get Data<\/span><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Installing the Required Library<\/strong><\/h2>\n\n\n\n<p>Before we proceed with fetching the data, we need to install the EODHD APIs Python Financial Library by running this command in a terminal window:<\/p>\n\n\n\n<p><em>pip install eodhd<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Importing Required Libraries<\/strong><\/h2>\n\n\n\n<p>Let&#8217;s create a new Python script file, or a Jupiter notebook. Let&#8217;s start by importing the necessary libraries. We will need the &#8220;eodhd&#8221; library for accessing the API, and the &#8220;pandas&#8221; library for organizing the data into a DataFrame.<\/p>\n\n\n\n<p><em>from eodhd import APIClient<\/em><\/p>\n\n\n\n<p><em>import pandas as pd<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Accessing the EODHD API<\/strong><\/h2>\n\n\n\n<p>To access the EODHD API, we need to create an instance of the &#8220;APIClient&#8221; class and pass it our API key. In this example, we will use the demo API key provided by EODHD, but in a real application, you should use your registered API key.<\/p>\n\n\n\n<p><em>api = APIClient(&#8220;demo&#8221;)<\/em><\/p>\n\n\n\n<p>Please note that you can also specify the API key in a configuration file or as an environment variable, as described in the library documentation<a href=\"https:\/\/github.com\/EodHistoricalData\/EODHD-APIs-Python-Financial-Library\/\"> <u>here<\/u><\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Retrieving Real-Time (Delayed) Data<\/strong><\/h2>\n\n\n\n<p>With the API client set up, we can now request real-time (delayed) data for a specific stock symbol. In this example, we will fetch data for &#8220;AAPL.US,&#8221; which represents Apple Inc. on the US stock exchange.<\/p>\n\n\n\n<p><em>resp = api.get_live_stock_prices(&#8220;AAPL.US&#8221;)<\/em><\/p>\n\n\n\n<p>The API response will be the single JSON structure.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Converting JSON Response to DataFrame<\/strong><\/h2>\n\n\n\n<p>To make the data more readable and easier to work with, we can convert the JSON response into a pandas DataFrame. However, the original response contains only one non-indexed element. To create a DataFrame, we need to specify an index. In this case, we will use index 0.<\/p>\n\n\n\n<p><em>df = pd.DataFrame(resp, index=[0])<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Exploring the DataFrame<\/strong><\/h2>\n\n\n\n<p>Now that we have our DataFrame, we can explore the data and analyze it more conveniently. The DataFrame will contain information such as &#8220;open,&#8221; &#8220;high,&#8221; &#8220;low,&#8221; &#8220;close,&#8221; and &#8220;volume&#8221; for the specified stock symbol (&#8220;AAPL.US&#8221;).<\/p>\n\n\n\n<p><em>print(df)<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Accessing Specific Data Points<\/strong><\/h2>\n\n\n\n<p>We can also access specific data points from the resulting dictionary (JSON response). For example, if we want to get the current live (delayed) price of the stock, we can do the following:<\/p>\n\n\n\n<p><em>current_price = resp[&#8216;close&#8217;]<\/em><\/p>\n\n\n\n<p><em>print(&#8220;Current live (delayed) price:&#8221;, current_price)<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Requesting Real-Time Data for Multiple Tickers<\/strong><\/h2>\n\n\n\n<p>In addition to fetching real-time data for a single stock symbol, you can also retrieve data for multiple tickers simultaneously using the EODHD APIs Python financial library. This feature is particularly useful for conducting comparative analysis, tracking various assets, and monitoring a diversified portfolio. To obtain information on several tickers, you can use the &#8216;s&#8217; parameter with the get_live_stock_prices() function, which allows requests to multiple tickers via the Live (delayed) Stock Price API.<\/p>\n\n\n\n<p>For example, to fetch real-time data for Apple Inc. (AAPL.US) and Vanguard Total Stock Market ETF (VTI) on the US stock exchange, as well as the Euro to US Dollar exchange rate (EUR.FOREX), you can use the following code:<\/p>\n\n\n\n<p><em>multiple_resp = api.get_live_stock_prices(ticker=&#8221;AAPL.US&#8221;, s=&#8221;VTI,EUR.FOREX&#8221;)<\/em><\/p>\n\n\n\n<p>The API response is a JSON array containing data for all the requested tickers. You can convert the resulting JSON array to a DataFrame for further analysis:<\/p>\n\n\n\n<p><em>df_m = pd.DataFrame(multiple_resp)<\/em><\/p>\n\n\n\n<p>By utilizing the &#8216;s&#8217; parameter, you can efficiently retrieve data for multiple tickers in a single API call, which can save time and streamline your analysis. The resulting DataFrame will contain information for each ticker, including attributes such as &#8220;open,&#8221; &#8220;high,&#8221; &#8220;low,&#8221; &#8220;close,&#8221; and &#8220;volume.&#8221; This data can be instrumental in comparing the performance of different assets, identifying trends, and making informed investment decisions.<\/p>\n\n\n\n<p><em>print(df_m)<\/em><\/p>\n\n\n\n<p>Here is a video illustrating the work with the eodxd library to get real-time data:<\/p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/08\/screen_record_2023-08-14-1.webm\"><\/video><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-text-align-center\"><a class=\"maxbutton-1 maxbutton maxbutton-subscribe-to-api external-css btn\" href=\"https:\/\/eodhd.com\/register\"><span class='mb-text'>Register &amp; Get Data<\/span><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>In this article, we learned how to fetch real-time data (delayed by 15 minutes) using the EODHD APIs Python financial library. We saw how to install the required library, access the EODHD API, retrieve live stock prices for a specific stock symbol, and convert the API response to a pandas DataFrame for easy analysis. We also demonstrated how to access specific data points, such as the current live (delayed) stock price.<\/p>\n\n\n\n<p>Remember that while delayed data can still provide valuable insights, it&#8217;s essential to be aware of the latency and use it appropriately for your trading or investment strategies. For real-time data with lower latency, you might need to explore other options.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>For investors, traders, financial analysts, and researchers, having access to delayed real-time data is indispensable. It allows them to stay informed about the latest market movements, track specific stock performance, and identify potential investment opportunities. While the data is not suitable for high-frequency trading or immediate decision-making, it is more than sufficient for conducting various [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_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":[43],"tags":[],"coding-language":[30],"ready-to-go-solution":[56],"qualification":[33],"financial-apis-category":[36],"financial-apis-manuals":[73],"class_list":["post-1687","post","type-post","status-publish","format-standard","hentry","category-how-to-get-stocks-data-examples","coding-language-python","ready-to-go-solution-eodhd-python-financial-library","qualification-newbie","financial-apis-category-stock-market-prices","financial-apis-manuals-live-delayed-15-mins"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.9 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library | Financial Academy EODHD<\/title>\n<meta name=\"description\" content=\"Access delayed real-time data for research and analysis. Discover how delayed data can help with trend analysis and correlation studies\" \/>\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-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library\" \/>\n<meta property=\"og:description\" content=\"Access delayed real-time data for research and analysis. Discover how delayed data can help with trend analysis and correlation studies\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library\" \/>\n<meta property=\"og:site_name\" content=\"Financial Academy\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/eodhistoricaldata\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-21T18:21:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T12:06:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/08\/How_to_Get_Live_Stocks_Prices_Delayed_by_15_Minutes_using_EODHD.png\" \/>\n\t<meta property=\"og:image:width\" content=\"799\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alejandro from EODHD\" \/>\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=\"Alejandro from EODHD\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library#article\",\"isPartOf\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library\"},\"author\":{\"name\":\"Alejandro from EODHD\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#\/schema\/person\/e0df2bcc2f28d997367bef46885eb1d2\"},\"headline\":\"How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library\",\"datePublished\":\"2023-08-21T18:21:55+00:00\",\"dateModified\":\"2024-03-26T12:06:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library\"},\"wordCount\":1149,\"publisher\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#organization\"},\"articleSection\":[\"How to Get Stocks Data Examples\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library\",\"url\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library\",\"name\":\"How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library | Financial Academy EODHD\",\"isPartOf\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#website\"},\"datePublished\":\"2023-08-21T18:21:55+00:00\",\"dateModified\":\"2024-03-26T12:06:58+00:00\",\"description\":\"Access delayed real-time data for research and analysis. Discover how delayed data can help with trend analysis and correlation studies\",\"breadcrumb\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/eodhd.com\/financial-academy\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#website\",\"url\":\"https:\/\/eodhd.com\/financial-academy\/\",\"name\":\"Financial APIs Academy | EODHD\",\"description\":\"Financial Stock Market Academy\",\"publisher\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/eodhd.com\/financial-academy\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#organization\",\"name\":\"EODHD (EOD Historical Data)\",\"url\":\"https:\/\/eodhd.com\/financial-academy\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png\",\"contentUrl\":\"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png\",\"width\":159,\"height\":82,\"caption\":\"EODHD (EOD Historical Data)\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#\/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-academy\/#\/schema\/person\/e0df2bcc2f28d997367bef46885eb1d2\",\"name\":\"Alejandro from EODHD\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/36e71c2bddabc430171e624fd06b8b02dae157de2d89edba1588e6c48aba60e0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/36e71c2bddabc430171e624fd06b8b02dae157de2d89edba1588e6c48aba60e0?s=96&d=mm&r=g\",\"caption\":\"Alejandro from EODHD\"},\"url\":\"https:\/\/eodhd.com\/financial-academy\/author\/alejandro-eodhd\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library | Financial Academy EODHD","description":"Access delayed real-time data for research and analysis. Discover how delayed data can help with trend analysis and correlation studies","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-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library","og_locale":"en_US","og_type":"article","og_title":"How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library","og_description":"Access delayed real-time data for research and analysis. Discover how delayed data can help with trend analysis and correlation studies","og_url":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library","og_site_name":"Financial Academy","article_publisher":"https:\/\/www.facebook.com\/eodhistoricaldata","article_published_time":"2023-08-21T18:21:55+00:00","article_modified_time":"2024-03-26T12:06:58+00:00","og_image":[{"width":799,"height":450,"url":"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/08\/How_to_Get_Live_Stocks_Prices_Delayed_by_15_Minutes_using_EODHD.png","type":"image\/png"}],"author":"Alejandro from EODHD","twitter_card":"summary_large_image","twitter_creator":"@EOD_data","twitter_site":"@EOD_data","twitter_misc":{"Written by":"Alejandro from EODHD","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library#article","isPartOf":{"@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library"},"author":{"name":"Alejandro from EODHD","@id":"https:\/\/eodhd.com\/financial-academy\/#\/schema\/person\/e0df2bcc2f28d997367bef46885eb1d2"},"headline":"How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library","datePublished":"2023-08-21T18:21:55+00:00","dateModified":"2024-03-26T12:06:58+00:00","mainEntityOfPage":{"@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library"},"wordCount":1149,"publisher":{"@id":"https:\/\/eodhd.com\/financial-academy\/#organization"},"articleSection":["How to Get Stocks Data Examples"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library","url":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library","name":"How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library | Financial Academy EODHD","isPartOf":{"@id":"https:\/\/eodhd.com\/financial-academy\/#website"},"datePublished":"2023-08-21T18:21:55+00:00","dateModified":"2024-03-26T12:06:58+00:00","description":"Access delayed real-time data for research and analysis. Discover how delayed data can help with trend analysis and correlation studies","breadcrumb":{"@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/how-to-get-real-time-data-delayed-by-15-minutes-using-eodhd-apis-python-financial-library#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eodhd.com\/financial-academy\/"},{"@type":"ListItem","position":2,"name":"How to Get Live Stocks Prices (15 Mins Delayed) using EODHD APIs Python Financial Library"}]},{"@type":"WebSite","@id":"https:\/\/eodhd.com\/financial-academy\/#website","url":"https:\/\/eodhd.com\/financial-academy\/","name":"Financial APIs Academy | EODHD","description":"Financial Stock Market Academy","publisher":{"@id":"https:\/\/eodhd.com\/financial-academy\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eodhd.com\/financial-academy\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/eodhd.com\/financial-academy\/#organization","name":"EODHD (EOD Historical Data)","url":"https:\/\/eodhd.com\/financial-academy\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-academy\/#\/schema\/logo\/image\/","url":"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png","contentUrl":"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png","width":159,"height":82,"caption":"EODHD (EOD Historical Data)"},"image":{"@id":"https:\/\/eodhd.com\/financial-academy\/#\/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-academy\/#\/schema\/person\/e0df2bcc2f28d997367bef46885eb1d2","name":"Alejandro from EODHD","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-academy\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/36e71c2bddabc430171e624fd06b8b02dae157de2d89edba1588e6c48aba60e0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/36e71c2bddabc430171e624fd06b8b02dae157de2d89edba1588e6c48aba60e0?s=96&d=mm&r=g","caption":"Alejandro from EODHD"},"url":"https:\/\/eodhd.com\/financial-academy\/author\/alejandro-eodhd"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/pdOdVT-rd","jetpack_sharing_enabled":true,"acf":[],"_links":{"self":[{"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/posts\/1687","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/comments?post=1687"}],"version-history":[{"count":2,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/posts\/1687\/revisions"}],"predecessor-version":[{"id":3005,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/posts\/1687\/revisions\/3005"}],"wp:attachment":[{"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/media?parent=1687"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/categories?post=1687"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/tags?post=1687"},{"taxonomy":"coding-language","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/coding-language?post=1687"},{"taxonomy":"ready-to-go-solution","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/ready-to-go-solution?post=1687"},{"taxonomy":"qualification","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/qualification?post=1687"},{"taxonomy":"financial-apis-category","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/financial-apis-category?post=1687"},{"taxonomy":"financial-apis-manuals","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/financial-apis-manuals?post=1687"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}