{"id":6001,"date":"2021-12-17T00:16:35","date_gmt":"2021-12-16T23:16:35","guid":{"rendered":"https:\/\/joapen.com\/blog\/?p=6001"},"modified":"2021-12-17T00:16:39","modified_gmt":"2021-12-16T23:16:39","slug":"koncorde-big-players-darkpool-index","status":"publish","type":"post","link":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/","title":{"rendered":"Koncorde Big Players + DarkPool Index"},"content":{"rendered":"\n<p>This code is an indicator composed by 2 pieces of code that have been combined.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Big players by Konkorde that are buying (<a href=\"https:\/\/www.blai5.net\/blai5-koncorde-la-importancia-del-volumen\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.blai5.net\/blai5-koncorde-la-importancia-del-volumen\/<\/a>)<\/li><li>DarkPool Index when it&#8217;s over 35% (<a href=\"https:\/\/squeezemetrics.com\/monitor\/download\/pdf\/short_is_long.pdf?\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/squeezemetrics.com\/monitor\/download\/pdf\/short_is_long.pdf?<\/a>)<\/li><\/ol>\n\n\n\n<p>The individual goal of these indicators is to point to big player buying. So what if we combine the 2 indicators?<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The code<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>study(title=\"Koncorde Big Players + DarkPool Index\", shorttitle=\"P3-Koncorde-Big-Players+DPI\", overlay=true)\r\n\/\/ Konkorde by Blay5 https:\/\/www.blai5.net\/\r\n\r\n\/\/We set the total Price as starting point\r\ntotalprice=ohlc4\r\n\/\/MONEY FLOW INDEX Y SU XMF\r\n\r\nMoneyFlowIndex(periodo) =>\r\n\r\n    valor = hlc3\r\n    pos = sum(volume * (change(valor) &lt; 0 ? 0 : valor), periodo)\r\n    neg = sum(volume * (change(valor) >= 0 ? 0 : valor), periodo)\r\n    rsi(pos, neg)\r\n   \r\nxmf = MoneyFlowIndex(14)\r\n\r\n\/\/ESTOC\u00c1STICO SUAVIZADO\r\n\r\nesto(variable, periodo, suavizado ) =>\r\n    ll = lowest(low, periodo)\r\n    hh = highest(high, periodo)\r\n    k = 100 * (variable - ll) \/ (hh - ll)\r\n    sma(k, suavizado)\r\n\r\nstoc = esto(totalprice, 21, 3)\r\n\r\nVarPrecio = (close - close &#91;1])\/close&#91;1]\r\nVN = (volume &lt; volume&#91;1] ? VarPrecio : 0)\r\nnvi = cum(VN)\r\nnvim = ema(nvi, 15)\r\nnvimax = highest(nvim, 90)\r\nnvimin = lowest(nvim, 90)\r\nazul = (nvi - nvim) * 100\/ (nvimax - nvimin)\r\n\r\n\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\r\n\/\/   Dark Pool Index (DPI)\r\n\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\r\n\/\/pull, calculate, and smooth individual stock DPI for the selected symbol\r\n\/\/pull the NASDAQ and NYSE Short Volumes from Quandl FINRA.\r\nNASDAQSHORT = security(\"QUANDL:FINRA\/FNSQ_\" + ticker + \"|0\", \"D\", close)\r\nNYSESHORT = security(\"QUANDL:FINRA\/FNYX_\" + ticker + \"|0\", \"D\", close)\r\n\/\/combining the NASDAQ and NYSE Short Volumes from Quandl FINRA.\r\nTOTALSHORT = NYSESHORT + NASDAQSHORT\r\n\r\n\/\/pulling the NASDAQ and NYSE Total Volumes from Quandl FINRA.\r\nNASDAQTOTALV = security(\"QUANDL:FINRA\/FNSQ_\" + ticker + \"|2\", \"D\", close)\r\nNYSETOTALV = security(\"QUANDL:FINRA\/FNYX_\" + ticker + \"|2\", \"D\", close)\r\n\/\/combining the NASDAQ and NYSE Total Volumes from Quandl FINRA.\r\nTOTALV = NASDAQTOTALV + NYSETOTALV\r\n\r\n\/\/Individual DPI calculation\r\nDPI = TOTALSHORT \/ TOTALV\r\narrowDPI = (DPI>0.35 and azul>0)  ? azul*-1 : na\r\n\r\n\/\/plot(azul, color=#00FFFF, style=area, title=\"azul\")\r\n\/\/plot(azul, color=#000066, style=line, linewidth=1, title=\"lazul\")\r\n\r\n\/\/plot(DPI, title=\"Individual Stock DPI\", color=blue, linewidth = 2, style=line)\r\n\/\/plot(DPIarrow, title=\"DPI arrow\", color=orange, linewidth = 1, style=line)\r\nplotarrow(arrowDPI, colordown=black)<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">An example<\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"522\" src=\"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4-1024x522.png\" alt=\"\" class=\"wp-image-6002\" srcset=\"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4-1024x522.png 1024w, https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4-300x153.png 300w, https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4-768x391.png 768w, https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4.png 1458w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption>Coca Cola, represented with the indicator<\/figcaption><\/figure>\n\n\n\n<p>Note that the length of the arrow is linked to the konkorde big players volume: the longer the arrow is, the strong than Konkorde is pointing to the buy signal.<\/p>\n\n\n\n<p>Right now I&#8217;m using it in test mode (that&#8217;s the reason you see a &#8220;P3&#8221; in the beginning of the name).<\/p>\n\n\n\n<p>As usual, any feedback is welcome<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code is an indicator composed by 2 pieces of code that have been combined. Big players by Konkorde that are buying (https:\/\/www.blai5.net\/blai5-koncorde-la-importancia-del-volumen\/) DarkPool Index when it&#8217;s over 35% (https:\/\/squeezemetrics.com\/monitor\/download\/pdf\/short_is_long.pdf?) The individual goal of these indicators is to point to big player buying. So what if we combine the 2 indicators? The code An example &#8230; <a title=\"Koncorde Big Players + DarkPool Index\" class=\"read-more\" href=\"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/\" aria-label=\"Read more about Koncorde Big Players + DarkPool Index\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[105],"tags":[],"class_list":["post-6001","post","type-post","status-publish","format-standard","hentry","category-trading"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Koncorde Big Players + DarkPool Index -<\/title>\n<meta name=\"description\" content=\"This code is an indicator composed by 2 pieces of code that have been combined. Big players by Konkorde that are buying - joapen projects\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Koncorde Big Players + DarkPool Index -\" \/>\n<meta property=\"og:description\" content=\"This code is an indicator composed by 2 pieces of code that have been combined. Big players by Konkorde that are buying - joapen projects\" \/>\n<meta property=\"og:url\" content=\"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/\" \/>\n<meta property=\"og:site_name\" content=\"joapen projects\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-16T23:16:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-16T23:16:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4-1024x522.png\" \/>\n<meta name=\"author\" content=\"joapen\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"joapen\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/\"},\"author\":{\"name\":\"joapen\",\"@id\":\"http:\\\/\\\/joapen.com\\\/blog\\\/#\\\/schema\\\/person\\\/23919df2312175fe9c4609203595b217\"},\"headline\":\"Koncorde Big Players + DarkPool Index\",\"datePublished\":\"2021-12-16T23:16:35+00:00\",\"dateModified\":\"2021-12-16T23:16:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/\"},\"wordCount\":137,\"commentCount\":2,\"publisher\":{\"@id\":\"http:\\\/\\\/joapen.com\\\/blog\\\/#\\\/schema\\\/person\\\/23919df2312175fe9c4609203595b217\"},\"image\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/image-4-1024x522.png\",\"articleSection\":[\"Trading\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/\",\"url\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/\",\"name\":\"Koncorde Big Players + DarkPool Index -\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/joapen.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/image-4-1024x522.png\",\"datePublished\":\"2021-12-16T23:16:35+00:00\",\"dateModified\":\"2021-12-16T23:16:39+00:00\",\"description\":\"This code is an indicator composed by 2 pieces of code that have been combined. Big players by Konkorde that are buying - joapen projects\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/#primaryimage\",\"url\":\"https:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/image-4.png\",\"contentUrl\":\"https:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/image-4.png\",\"width\":1458,\"height\":743},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2021\\\/12\\\/17\\\/koncorde-big-players-darkpool-index\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/joapen.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Koncorde Big Players + DarkPool Index\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/joapen.com\\\/blog\\\/#website\",\"url\":\"http:\\\/\\\/joapen.com\\\/blog\\\/\",\"name\":\"joapen projects\",\"description\":\"Just a place to write\",\"publisher\":{\"@id\":\"http:\\\/\\\/joapen.com\\\/blog\\\/#\\\/schema\\\/person\\\/23919df2312175fe9c4609203595b217\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/joapen.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"http:\\\/\\\/joapen.com\\\/blog\\\/#\\\/schema\\\/person\\\/23919df2312175fe9c4609203595b217\",\"name\":\"joapen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/joapen-mini.jpeg\",\"url\":\"https:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/joapen-mini.jpeg\",\"contentUrl\":\"https:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/joapen-mini.jpeg\",\"width\":400,\"height\":400,\"caption\":\"joapen\"},\"logo\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/joapen-mini.jpeg\"},\"sameAs\":[\"http:\\\/\\\/www.joapen.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Koncorde Big Players + DarkPool Index -","description":"This code is an indicator composed by 2 pieces of code that have been combined. Big players by Konkorde that are buying - joapen projects","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:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/","og_locale":"en_US","og_type":"article","og_title":"Koncorde Big Players + DarkPool Index -","og_description":"This code is an indicator composed by 2 pieces of code that have been combined. Big players by Konkorde that are buying - joapen projects","og_url":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/","og_site_name":"joapen projects","article_published_time":"2021-12-16T23:16:35+00:00","article_modified_time":"2021-12-16T23:16:39+00:00","og_image":[{"url":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4-1024x522.png","type":"","width":"","height":""}],"author":"joapen","twitter_misc":{"Written by":"joapen","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/#article","isPartOf":{"@id":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/"},"author":{"name":"joapen","@id":"http:\/\/joapen.com\/blog\/#\/schema\/person\/23919df2312175fe9c4609203595b217"},"headline":"Koncorde Big Players + DarkPool Index","datePublished":"2021-12-16T23:16:35+00:00","dateModified":"2021-12-16T23:16:39+00:00","mainEntityOfPage":{"@id":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/"},"wordCount":137,"commentCount":2,"publisher":{"@id":"http:\/\/joapen.com\/blog\/#\/schema\/person\/23919df2312175fe9c4609203595b217"},"image":{"@id":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/#primaryimage"},"thumbnailUrl":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4-1024x522.png","articleSection":["Trading"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/","url":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/","name":"Koncorde Big Players + DarkPool Index -","isPartOf":{"@id":"http:\/\/joapen.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/#primaryimage"},"image":{"@id":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/#primaryimage"},"thumbnailUrl":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4-1024x522.png","datePublished":"2021-12-16T23:16:35+00:00","dateModified":"2021-12-16T23:16:39+00:00","description":"This code is an indicator composed by 2 pieces of code that have been combined. Big players by Konkorde that are buying - joapen projects","breadcrumb":{"@id":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/#primaryimage","url":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4.png","contentUrl":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/12\/image-4.png","width":1458,"height":743},{"@type":"BreadcrumbList","@id":"https:\/\/joapen.com\/blog\/2021\/12\/17\/koncorde-big-players-darkpool-index\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/joapen.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Koncorde Big Players + DarkPool Index"}]},{"@type":"WebSite","@id":"http:\/\/joapen.com\/blog\/#website","url":"http:\/\/joapen.com\/blog\/","name":"joapen projects","description":"Just a place to write","publisher":{"@id":"http:\/\/joapen.com\/blog\/#\/schema\/person\/23919df2312175fe9c4609203595b217"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/joapen.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"http:\/\/joapen.com\/blog\/#\/schema\/person\/23919df2312175fe9c4609203595b217","name":"joapen","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/04\/joapen-mini.jpeg","url":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/04\/joapen-mini.jpeg","contentUrl":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/04\/joapen-mini.jpeg","width":400,"height":400,"caption":"joapen"},"logo":{"@id":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2021\/04\/joapen-mini.jpeg"},"sameAs":["http:\/\/www.joapen.com"]}]}},"_links":{"self":[{"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/posts\/6001","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/comments?post=6001"}],"version-history":[{"count":1,"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/posts\/6001\/revisions"}],"predecessor-version":[{"id":6003,"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/posts\/6001\/revisions\/6003"}],"wp:attachment":[{"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/media?parent=6001"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/categories?post=6001"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/tags?post=6001"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}