{"id":175998,"date":"2021-04-28T19:26:00","date_gmt":"2021-04-28T23:26:00","guid":{"rendered":"https:\/\/ibkrcampus.com\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/"},"modified":"2023-04-25T21:05:46","modified_gmt":"2023-04-26T01:05:46","slug":"using-realtimedata-rtd-server-for-excel","status":"publish","type":"trading-lessons","link":"https:\/\/www.interactivebrokers.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/","title":{"rendered":"Using RealTimeData (RTD) server for Excel"},"content":{"rendered":"<h4>Overview of RTD<\/h4>\n<p>In this lesson, we&#8217;re going to define Excel RTD, verify the TWS settings for RTD access, walk-through a sample RTD spreadsheet and look at syntax of an RTD formula.<\/p>\n<p>RTD is a worksheet function provided by Microsoft that allows Excel to retrieve data from a real-time-data server. In this case, the Trader Workstation or IB Gateway is the server that sends data back to Excel.<br \/>\nIn essence, it allows you to create your own custom watchlist to display quotes in Excel. Each cell will contain a formula that represents a specific market data column of an instrument.<\/p>\n<p>If you are using RTD, you must also ensure that the TWS API was installed on the same drive as the operating system which is usually the c drive, or there may be issues.<\/p>\n<h4>Verify TWS API settings for RTD<\/h4>\n<p>First, we must verify that the TWS API settings are configured correctly as described in Lesson 1.<\/p>\n<ul>\n<li>To do this just open Global Configuration from the File menu and go to API &gt; Settings and enable Enable ActiveX and Socket Clients\u201d then review the Socket Ports.<\/li>\n<li>If you would like to connect on a different socket port or IP, you may add connection parameters to your RTD formulas. We will cover the syntax of the RTD more in depth shortly.<\/li>\n<\/ul>\n<p>Here&#8217;s an example of the Host Port Client ID parameters.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-4504 size-medium lazyload\" data-src=\"\/campus\/wp-content\/uploads\/sites\/2\/2023\/01\/rtd-host-parameters.jpg\" alt=\"\" width=\"960\" height=\"498\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 960px; aspect-ratio: 960\/498;\"><\/p>\n<h4>Overview of Sample RTD Spreadsheet<\/h4>\n<ul>\n<li>The sample RTD spreadsheet will be located in the TWS API folder of the API installation.<\/li>\n<li>The sample sheet primarily uses the START and END macro buttons to automatically add or remove an equal sign at the beginning of the pre-populated formulas in order to complete each request.<\/li>\n<li>In the sample, the columns of the spreadsheet such as \u201cVolume\u201d, are used as the \u201ctopic string\u201d and are referenced directly in the RTD formulas to create the formulas for each column. You may do the same in your custom spreadsheet or you may write your formulas explicitly.<\/li>\n<\/ul>\n<h4>Syntax of an RTD Formula<\/h4>\n<ul>\n<li>RTD formulas consist of the progID, server, and topic strings.<\/li>\n<li>As such, the first two fields in your RTD formulas will always be the same.<br \/>\nFormulas can be built using either a simple or complex.<\/li>\n<li>You can also mix the syntax.<\/li>\n<li>The complex syntax is most explicit.<\/li>\n<li>Here is IBKR&#8217;s \u201c<a href=\"https:\/\/interactivebrokers.github.io\/tws-api\/tws_rtd_server.html#rtd_examples_headline\" target=\"_blank\" rel=\"noopener\">Syntax Samples<\/a>\u201d page where it&#8217;s suggested you view example formulas for the different instrument types.<\/li>\n<\/ul>\n<p>Here is an example on how to specify the last price for AMZN using the <strong>complex<\/strong> syntax:<\/p>\n<pre>=RTD(\"tws.twsrtdserverctrl\",,\"sym=AMZN\", \"sec=STK\", \"exch=SMART\", \"cur=USD\", \"qt=Last\")<\/pre>\n<p>The \u201cqt=\u201d topic string tells which market data column to request from TWS.<\/p>\n<p>Available quote types\/tick types can be found in the following <a href=\"https:\/\/interactivebrokers.github.io\/tws-api\/rtd_simple_syntax.html\" target=\"_blank\" rel=\"noopener\">page<\/a>.<\/p>\n<p>Tick types are different quote types which are available for different instruments supported by TWS. The data relayed back for these ticks is equivalent to the data displayed in its corresponding TWS market data column.<\/p>\n<p>As can be seen here, tick types include bid, ask, last, volume, etc. Each RTD formula is able to relay back data for a single tick type.<br \/>\nAfter the formula has been entered into a cell, Excel will begin to query and update the price automatically. I&#8217;ll just hit Enter and now you&#8217;ll see the prices are updating.<\/p>\n<p>Note, due to limitations of the RTD technology and Excel, there may be some delay when comparing the price values in Excel and TWS, as Excel cannot update the displayed values as quickly as the API sends them.<\/p>\n<p>Now this is how to query the last price for AMZN using the simple syntax:<\/p>\n<pre>=RTD(\"tws.twsrtdserverctrl\",,\" AMZN@SMART\")<\/pre>\n<p>The <a href=\"https:\/\/interactivebrokers.github.io\/tws-api\/tws_rtd_server.html#rtd_examples_headline\" target=\"_blank\" rel=\"noopener\">sample syntax page<\/a> will provide more details and the link will be included in the study notes.<\/p>\n<h4>Generic Tick Types<\/h4>\n<p>Let&#8217;s access the tick types page again you may have noticed some tick types are marked as \u201cgeneric tick types\u201d. These are additional values that may be pulled from TWS. Here you&#8217;ll see tick types for things like option historical volatility, 52 week high, Average volume, etc.<br \/>\nFor example if you want to query the 52 Week High for AMZN specify genTicks equal 165 and qt equals Week52Hi.<\/p>\n<p>Let&#8217;s enter this here and hit return to see the 52 week high value.<\/p>\n<pre>=RTD(\"tws.twsrtdserverctrl\",,\"sym=AMZN\", \"sec=STK\", \"exch=SMART\", \"cur=USD\", \"genticks=165\", \"qt=Week52Hi\")<\/pre>\n<p><strong>Note:<\/strong> <strong>Not all generic ticks are supported for all instrument types. <\/strong><\/p>\n<p>If you request data for an unsupported tick, you may receive error 321, Incorrect generic tick list, which will also tell you the supported generic ticks for the instrument. If you obtain this error or do not receive the expected data, you may verify the values returned in the TWS. If the TWS market data type is not listed in our documentation, it will not be returned in the API, however.<\/p>\n<p>Next, let&#8217;s check out an example to obtain dividend information. Again, you may enter the formula shown here and hit Return to display the information.<\/p>\n<pre>=RTD(\"tws.twsrtdserverctrl\",,\"sym=AMZN\", \"sec=STK\", \"exch=SMART\", \"cur=USD\", \"genticks=456\", \"qt=IBDividends\")<\/pre>\n<h4>Additional Links<\/h4>\n<p><a href=\"https:\/\/interactivebrokers.github.io\/tws-api\/\" target=\"_blank\" rel=\"noopener\">TWS API Software<\/a><\/p>\n<p><a href=\"https:\/\/www.interactivebrokers.com\/en\/index.php?f=5039\" target=\"_blank\" rel=\"noopener\">API Users Guide<\/a><\/p>\n<p><a href=\"https:\/\/www.interactivebrokers.com\/en\/index.php?f=5059\" target=\"_blank\" rel=\"noopener\">API Release Notes \u2013 Production<\/a><\/p>\n<p><a href=\"https:\/\/www.interactivebrokers.com\/en\/index.php?f=5061\" target=\"_blank\" rel=\"noopener\">API Beta Release Notes<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Once the TWS API has been set up, this lesson will show you how to set up Excel RTD to create your own custom watchlist.<\/p>\n","protected":false},"author":851,"featured_media":221402,"parent":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"contributors-categories":[13576],"traders-academy":[13125,13128,13132],"class_list":{"0":"post-175998","1":"trading-lessons","2":"type-trading-lessons","3":"status-publish","4":"has-post-thumbnail","6":"contributors-categories-interactive-brokers","7":"traders-academy-beginner-trading","8":"traders-academy-level","9":"traders-academy-trading-lesson"},"pp_statuses_selecting_workflow":false,"pp_workflow_action":"current","pp_status_selection":"publish","acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.9 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Archives | Traders&#039; Academy | IBKR Campus<\/title>\n<meta name=\"description\" content=\"Once the TWS API has been set up, this lesson will show you how to set up Excel RTD to create your own custom watchlist.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.interactivebrokers.com\/campus\/wp-json\/wp\/v2\/trading-lessons\/175998\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using RealTimeData (RTD) server for Excel\" \/>\n<meta property=\"og:description\" content=\"Once the TWS API has been set up, this lesson will show you how to set up Excel RTD to create your own custom watchlist.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.interactivebrokers.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/\" \/>\n<meta property=\"og:site_name\" content=\"IBKR Campus US\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-26T01:05:46+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Using RealTimeData (RTD) server for Excel\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t    \"@context\": \"https:\\\/\\\/schema.org\",\n\t    \"@graph\": [\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/using-realtimedata-rtd-server-for-excel\\\/\",\n\t            \"url\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/using-realtimedata-rtd-server-for-excel\\\/\",\n\t            \"name\": \"Using RealTimeData (RTD) server for Excel\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#website\"\n\t            },\n\t            \"primaryImageOfPage\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/using-realtimedata-rtd-server-for-excel\\\/#primaryimage\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/using-realtimedata-rtd-server-for-excel\\\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2021\\\/04\\\/mqdefault-2.jpg\",\n\t            \"datePublished\": \"2021-04-28T23:26:00+00:00\",\n\t            \"dateModified\": \"2023-04-26T01:05:46+00:00\",\n\t            \"description\": \"Once the TWS API has been set up, this lesson will show you how to set up Excel RTD to create your own custom watchlist.\",\n\t            \"breadcrumb\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/using-realtimedata-rtd-server-for-excel\\\/#breadcrumb\"\n\t            },\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"ReadAction\",\n\t                    \"target\": [\n\t                        \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/using-realtimedata-rtd-server-for-excel\\\/\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"ImageObject\",\n\t            \"inLanguage\": \"en-US\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/using-realtimedata-rtd-server-for-excel\\\/#primaryimage\",\n\t            \"url\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2021\\\/04\\\/mqdefault-2.jpg\",\n\t            \"contentUrl\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2021\\\/04\\\/mqdefault-2.jpg\",\n\t            \"width\": 320,\n\t            \"height\": 180,\n\t            \"caption\": \"Using RealTimeData (RTD) server for Excel\"\n\t        },\n\t        {\n\t            \"@type\": \"BreadcrumbList\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/using-realtimedata-rtd-server-for-excel\\\/#breadcrumb\",\n\t            \"itemListElement\": [\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 1,\n\t                    \"name\": \"Academy Lessons\",\n\t                    \"item\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/\"\n\t                },\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 2,\n\t                    \"name\": \"Using RealTimeData (RTD) server for Excel\"\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebSite\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#website\",\n\t            \"url\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/\",\n\t            \"name\": \"IBKR Campus US\",\n\t            \"description\": \"Financial Education from Interactive Brokers\",\n\t            \"publisher\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#organization\"\n\t            },\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"SearchAction\",\n\t                    \"target\": {\n\t                        \"@type\": \"EntryPoint\",\n\t                        \"urlTemplate\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/?s={search_term_string}\"\n\t                    },\n\t                    \"query-input\": {\n\t                        \"@type\": \"PropertyValueSpecification\",\n\t                        \"valueRequired\": true,\n\t                        \"valueName\": \"search_term_string\"\n\t                    }\n\t                }\n\t            ],\n\t            \"inLanguage\": \"en-US\"\n\t        },\n\t        {\n\t            \"@type\": \"Organization\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#organization\",\n\t            \"name\": \"Interactive Brokers\",\n\t            \"alternateName\": \"IBKR\",\n\t            \"url\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/\",\n\t            \"logo\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#\\\/schema\\\/logo\\\/image\\\/\",\n\t                \"url\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2024\\\/05\\\/ibkr-campus-logo.jpg\",\n\t                \"contentUrl\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2024\\\/05\\\/ibkr-campus-logo.jpg\",\n\t                \"width\": 669,\n\t                \"height\": 669,\n\t                \"caption\": \"Interactive Brokers\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#\\\/schema\\\/logo\\\/image\\\/\"\n\t            },\n\t            \"publishingPrinciples\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/about-ibkr-campus\\\/\",\n\t            \"ethicsPolicy\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/cyber-security-notice\\\/\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Archives | Traders' Academy | IBKR Campus","description":"Once the TWS API has been set up, this lesson will show you how to set up Excel RTD to create your own custom watchlist.","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:\/\/www.interactivebrokers.com\/campus\/wp-json\/wp\/v2\/trading-lessons\/175998\/","og_locale":"en_US","og_type":"article","og_title":"Using RealTimeData (RTD) server for Excel","og_description":"Once the TWS API has been set up, this lesson will show you how to set up Excel RTD to create your own custom watchlist.","og_url":"https:\/\/www.interactivebrokers.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/","og_site_name":"IBKR Campus US","article_modified_time":"2023-04-26T01:05:46+00:00","twitter_card":"summary_large_image","twitter_title":"Using RealTimeData (RTD) server for Excel","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/","url":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/","name":"Using RealTimeData (RTD) server for Excel","isPartOf":{"@id":"https:\/\/ibkrcampus.com\/campus\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/#primaryimage"},"image":{"@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/#primaryimage"},"thumbnailUrl":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2021\/04\/mqdefault-2.jpg","datePublished":"2021-04-28T23:26:00+00:00","dateModified":"2023-04-26T01:05:46+00:00","description":"Once the TWS API has been set up, this lesson will show you how to set up Excel RTD to create your own custom watchlist.","breadcrumb":{"@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ibkrcampus.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/#primaryimage","url":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2021\/04\/mqdefault-2.jpg","contentUrl":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2021\/04\/mqdefault-2.jpg","width":320,"height":180,"caption":"Using RealTimeData (RTD) server for Excel"},{"@type":"BreadcrumbList","@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/using-realtimedata-rtd-server-for-excel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Academy Lessons","item":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/"},{"@type":"ListItem","position":2,"name":"Using RealTimeData (RTD) server for Excel"}]},{"@type":"WebSite","@id":"https:\/\/ibkrcampus.com\/campus\/#website","url":"https:\/\/ibkrcampus.com\/campus\/","name":"IBKR Campus US","description":"Financial Education from Interactive Brokers","publisher":{"@id":"https:\/\/ibkrcampus.com\/campus\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ibkrcampus.com\/campus\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/ibkrcampus.com\/campus\/#organization","name":"Interactive Brokers","alternateName":"IBKR","url":"https:\/\/ibkrcampus.com\/campus\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ibkrcampus.com\/campus\/#\/schema\/logo\/image\/","url":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2024\/05\/ibkr-campus-logo.jpg","contentUrl":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2024\/05\/ibkr-campus-logo.jpg","width":669,"height":669,"caption":"Interactive Brokers"},"image":{"@id":"https:\/\/ibkrcampus.com\/campus\/#\/schema\/logo\/image\/"},"publishingPrinciples":"https:\/\/www.interactivebrokers.com\/campus\/about-ibkr-campus\/","ethicsPolicy":"https:\/\/www.interactivebrokers.com\/campus\/cyber-security-notice\/"}]}},"_links":{"self":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/trading-lessons\/175998","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/trading-lessons"}],"about":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/types\/trading-lessons"}],"author":[{"embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/users\/851"}],"replies":[{"embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/comments?post=175998"}],"version-history":[{"count":0,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/trading-lessons\/175998\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/media\/221402"}],"wp:attachment":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/media?parent=175998"}],"wp:term":[{"taxonomy":"contributors-categories","embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/contributors-categories?post=175998"},{"taxonomy":"traders-academy","embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/traders-academy?post=175998"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}