{"id":4654,"date":"2020-05-02T10:48:07","date_gmt":"2020-05-02T10:48:07","guid":{"rendered":"http:\/\/joapen.com\/blog\/?p=4654"},"modified":"2021-04-27T21:12:52","modified_gmt":"2021-04-27T19:12:52","slug":"commitment-of-traders-cot-in-tradingview","status":"publish","type":"post","link":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/","title":{"rendered":"Commitment of Traders (COT) in tradingview"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">Some theory to add background<\/h1>\n\n\n\n<p class=\"has-normal-font-size\">I continue studying about <a href=\"https:\/\/www.investopedia.com\/terms\/m\/market_breadth.asp\" target=\"_blank\" rel=\"noopener noreferrer\">market breadth<\/a>, and this time I&#8217;m creating a script for the analysis of the Commitment of Traders.<\/p>\n\n\n\n<p class=\"has-normal-font-size\">The Commitment of Traders (COT) reports show futures traders\u2019 positions at the close of (usually) Tuesday\u2019s trading session. The report is prepared by the Commodity Futures Trading Commission (CFTC). It is an excellent trading tool and can be used as an indicator for analyzing market sentiment.<\/p>\n\n\n\n<p class=\"has-normal-font-size\">Markets are only included if 20 or more traders hold positions equal to or above the reporting levels established by the CFTC and the respective exchanges.<\/p>\n\n\n\n<p class=\"has-normal-font-size\">Traders are grouped into categories:<\/p>\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\"><li>Commercial Traders,<\/li><li>Non-Commercial Traders (large speculators)<\/li><li>Non-reportable (small speculators).<\/li><\/ul>\n\n\n\n<h1 class=\"wp-block-heading\">COTs on tradingview<\/h1>\n\n\n\n<p class=\"has-normal-font-size\">Right now there is no direct data in tradingview related to COTs. But you can work with this data accesing through <a href=\"https:\/\/www.quandl.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Quandl<\/a>. Only Legacy format is available for tradingview.<\/p>\n\n\n\n<p class=\"has-normal-font-size\"><a href=\"https:\/\/www.tradingview.com\/u\/MagicEins\/\" target=\"_blank\" rel=\"noopener noreferrer\">MagicEins<\/a> provides on <a href=\"https:\/\/www.tradingview.com\/script\/VQasmih8-CoT-Data\/\" target=\"_blank\" rel=\"noopener noreferrer\">this script<\/a> a code and an explanation about how to use this data, It contains all symbols available, and he provides updates.<\/p>\n\n\n\n<p class=\"has-normal-font-size\">The main codes I&#8217;m interested are:<\/p>\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\"><li>Russell 2000 E-Mini (RTY) == &#8220;239742&#8221;<\/li><li>S&amp;P 500 (SP) == &#8220;138741&#8221;<\/li><li>Dow Jones Industrial Average Index (DJIA) == &#8220;12460P&#8221;<\/li><\/ul>\n\n\n\n<p class=\"has-normal-font-size\">The colours used are:<\/p>\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\"><li><span style=\"color: #3366ff;\">Commercials ==&nbsp; blue<\/span><\/li><li><span style=\"color: #ff0000;\">Large Speculators ==&nbsp; red<\/span><\/li><li><span style=\"color: #008000;\">Speculators net&nbsp; &nbsp;==&nbsp; green<\/span><\/li><\/ul>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><a href=\"http:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/market-breadth-cots-joapen\/\" rel=\"attachment wp-att-4655\"><img loading=\"lazy\" decoding=\"async\" width=\"547\" height=\"493\" src=\"http:\/\/joapen.com\/blog\/wp-content\/uploads\/2020\/05\/Market-breadth-COTs-joapen.jpg\" alt=\"\" class=\"wp-image-4655\" srcset=\"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2020\/05\/Market-breadth-COTs-joapen.jpg 547w, https:\/\/joapen.com\/blog\/wp-content\/uploads\/2020\/05\/Market-breadth-COTs-joapen-300x270.jpg 300w, https:\/\/joapen.com\/blog\/wp-content\/uploads\/2020\/05\/Market-breadth-COTs-joapen-333x300.jpg 333w\" sizes=\"auto, (max-width: 547px) 100vw, 547px\" \/><\/a><\/figure><\/div>\n\n\n\n<p>I added 3 inputs to enable to draw just the COTs you want:<\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Code example<\/h1>\n\n\n\n<pre class=\"wp-block-preformatted has-normal-font-size\">study(\"Market Breadth P2 CoTs-joapen\", shorttitle=\"Market-Breadth-P2CoTs-joapen\", precision=0)\n\nshortnegative = input(title=\"Show Shorts as negative numbers?\", type=bool, defval=false)\nshowCommercials = input(title = \"show Commercials?\", type=bool, defval=true)\nshowLargeSpeculators = input(title = \"show Large Speculators?\", type=bool, defval=false)\nshowSmallSpeculators = input(title = \"show Small Speculators?\", type=bool, defval=false)\n\nsnn = shortnegative ? -1 : 1\n\nquandl_futures_code =\n\t  syminfo.root == \"ZB\" ? \"020601\" : \n\t  syminfo.root == \"ZN\" ? \"043602\" : \n\t  syminfo.root == \"ZS\" ? \"005602\" : \n\t  syminfo.root == \"ZM\" ? \"026603\" : \n\t  syminfo.root == \"ZL\" ? \"007601\" : \n\t  syminfo.root == \"ZC\" ? \"002602\" : \n\t  syminfo.root == \"ZW\" ? \"001602\" : \n\t  syminfo.root == \"KE\" ? \"001612\" : \n\t  syminfo.root == \"HE\" ? \"054642\" : \n\t  syminfo.root == \"LE\" ? \"057642\" : \n\t  syminfo.root == \"GC\" ? \"088691\" : \n\t  syminfo.root == \"SI\" ? \"084691\" : \n\t  syminfo.root == \"HG\" ? \"085692\" : \n\t  syminfo.root == \"CL\" ? \"067651\" : \n\t  syminfo.root == \"HO\" ? \"022651\" : \n\t  syminfo.root == \"RB\" ? \"111659\" : \n\t  syminfo.root == \"NG\" ? \"023651\" : \n\t  syminfo.root == \"6A\" ? \"232741\" : \n\t  syminfo.root == \"6B\" ? \"096742\" : \n\t  syminfo.root == \"6C\" ? \"090741\" : \n\t  syminfo.root == \"6E\" ? \"099741\" : \n\t  syminfo.root == \"6J\" ? \"097741\" : \n\t  syminfo.root == \"6S\" ? \"092741\" : \n\t  syminfo.root == \"SB\" ? \"080732\" : \n\t  syminfo.root == \"KC\" ? \"083731\" : \n\t  syminfo.root == \"CC\" ? \"073732\" : \n\t  syminfo.root == \"CT\" ? \"033661\" : \n\t  syminfo.root == \"ES\" ? \"13874A\" : \n\t  syminfo.root == \"RTY\" ? \"239742\" : \n\t  syminfo.root == \"YM\" ? \"12460P\" : \n\t  syminfo.root == \"NQ\" ? \"209742\" : \n\t  syminfo.root == \"PA\" ? \"075651\" : \n\t  syminfo.root == \"PL\" ? \"076651\" : \n\t  syminfo.root == \"AUP\" ? \"191693\" : \n\t  syminfo.root == \"HRC\" ? \"192651\" : \n\t  syminfo.root == \"EH\" ? \"025651\" : \n\t  syminfo.root == \"BB\" ? \"06765T\" : \n\t  syminfo.root == \"ZR\" ? \"039601\" : \n\t  syminfo.root == \"ZO\" ? \"004603\" : \n\t  syminfo.root == \"DC\" ? \"052641\" : \n\t  syminfo.root == \"OJ\" ? \"040701\" : \n\t  syminfo.root == \"LBS\" ? \"058643\" : \n\t  syminfo.root == \"GF\" ? \"061641\" : \n\t  syminfo.root == \"SP\" ? \"138741\" : \n\t  syminfo.root == \"DJIA\" ? \"12460P\" : \n\t  syminfo.root == \"6N\" ? \"112741\" : \n\t  syminfo.root == \"6L\" ? \"102741\" : \n\t  syminfo.root == \"VX\" ? \"1170E1\" : \n\t  syminfo.root == \"6M\" ? \"095741\" : \n\t  syminfo.root == \"6R\" ? \"089741\" : \n\t  syminfo.root == \"6Z\" ? \"122741\" : \n\t  syminfo.root == \"ZT\" ? \"042601\" : \n\t  syminfo.root == \"ZF\" ? \"044601\" : \n    \"\"\n    \nquandl_code = \"QUANDL:CFTC\/\" + quandl_futures_code + \"_F_L_ALL\"\n\ncomm_long = security (quandl_code + \"|4\", \"D\", close)\ncomm_short = security (quandl_code + \"|5\", \"D\", close)\nlspecs_long = security (quandl_code + \"|1\", \"D\", close)\nlspecs_short = security (quandl_code + \"|2\", \"D\", close)\nsspecs_long = security (quandl_code + \"|8\", \"D\", close)\nsspecs_short = security (quandl_code + \"|9\", \"D\", close)\n\n\/\/ showCommercials  --- blue\nplot (showCommercials?comm_long:na, color = blue, title = \"Commercials long\", style=line,linewidth=1,transp=0)\nplot (showCommercials?comm_short*snn:na, color = purple, title = \"Commercials short\", style=line,linewidth=1,transp=0)\nplot (showCommercials?comm_long - comm_short:na, color = blue, title = \"Commercials net\", style=line,linewidth=2,transp=50)\n\/\/ showLargeSpeculators  ---   red\nplot (showLargeSpeculators?lspecs_long:na, color = red, title = \"Large Speculators long\", style=line,linewidth=1,transp=0)\nplot (showLargeSpeculators?lspecs_short*snn:na, color = orange, title = \"Large Speculators short\", style=line,linewidth=1,transp=0)\nplot (showLargeSpeculators?lspecs_long - lspecs_short:na, color = red, title = \"Large Speculators net\", style=line,linewidth=2,transp=50)\n\/\/ showSmallSpeculators  ---- green\nplot (showSmallSpeculators?sspecs_long:na, color = green, title = \"Small Speculators long\", style=line,linewidth=1,transp=0)\nplot (showSmallSpeculators?sspecs_short*snn:na, color = olive, title = \"Small Speculators short\", style=line,linewidth=1,transp=0)\nplot (showSmallSpeculators?sspecs_long - sspecs_short:na, color = green, title = \"Small Speculators net\", style=line,linewidth=2,transp=50)\n\/\/ horizontal line\nhline(0, color=black, title = \"Zero\", linestyle=dotted,linewidth=1)<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Some theory to add background I continue studying about market breadth, and this time I&#8217;m creating a script for the analysis of the Commitment of Traders. The Commitment of Traders (COT) reports show futures traders\u2019 positions at the close of (usually) Tuesday\u2019s trading session. The report is prepared by the Commodity Futures Trading Commission (CFTC). &#8230; <a title=\"Commitment of Traders (COT) in tradingview\" class=\"read-more\" href=\"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/\" aria-label=\"Read more about Commitment of Traders (COT) in tradingview\">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":[203,5],"tags":[],"class_list":["post-4654","post","type-post","status-publish","format-standard","hentry","category-market-breadth","category-product-and-solutions"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Commitment of Traders (COT) in tradingview -<\/title>\n<meta name=\"description\" content=\"Some theory to add background I continue studying about market breadth, and this time I&#039;m creating a script for the analysis of the Commitment of Traders. - 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\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Commitment of Traders (COT) in tradingview -\" \/>\n<meta property=\"og:description\" content=\"Some theory to add background I continue studying about market breadth, and this time I&#039;m creating a script for the analysis of the Commitment of Traders. - joapen projects\" \/>\n<meta property=\"og:url\" content=\"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/\" \/>\n<meta property=\"og:site_name\" content=\"joapen projects\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-02T10:48:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-27T19:12:52+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/joapen.com\/blog\/wp-content\/uploads\/2020\/05\/Market-breadth-COTs-joapen.jpg\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/\"},\"author\":{\"name\":\"joapen\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/#\\\/schema\\\/person\\\/23919df2312175fe9c4609203595b217\"},\"headline\":\"Commitment of Traders (COT) in tradingview\",\"datePublished\":\"2020-05-02T10:48:07+00:00\",\"dateModified\":\"2021-04-27T19:12:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/\"},\"wordCount\":228,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/#\\\/schema\\\/person\\\/23919df2312175fe9c4609203595b217\"},\"image\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Market-breadth-COTs-joapen.jpg\",\"articleSection\":[\"Market Breadth\",\"Product and Solutions\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/\",\"url\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/\",\"name\":\"Commitment of Traders (COT) in tradingview -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Market-breadth-COTs-joapen.jpg\",\"datePublished\":\"2020-05-02T10:48:07+00:00\",\"dateModified\":\"2021-04-27T19:12:52+00:00\",\"description\":\"Some theory to add background I continue studying about market breadth, and this time I'm creating a script for the analysis of the Commitment of Traders. - joapen projects\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/#primaryimage\",\"url\":\"https:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Market-breadth-COTs-joapen.jpg\",\"contentUrl\":\"https:\\\/\\\/joapen.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Market-breadth-COTs-joapen.jpg\",\"width\":547,\"height\":493},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/2020\\\/05\\\/02\\\/commitment-of-traders-cot-in-tradingview\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/joapen.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Commitment of Traders (COT) in tradingview\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/joapen.com\\\/blog\\\/\",\"name\":\"joapen projects\",\"description\":\"Just a place to write\",\"publisher\":{\"@id\":\"https:\\\/\\\/joapen.com\\\/blog\\\/#\\\/schema\\\/person\\\/23919df2312175fe9c4609203595b217\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/joapen.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/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":"Commitment of Traders (COT) in tradingview -","description":"Some theory to add background I continue studying about market breadth, and this time I'm creating a script for the analysis of the Commitment of Traders. - 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\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/","og_locale":"en_US","og_type":"article","og_title":"Commitment of Traders (COT) in tradingview -","og_description":"Some theory to add background I continue studying about market breadth, and this time I'm creating a script for the analysis of the Commitment of Traders. - joapen projects","og_url":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/","og_site_name":"joapen projects","article_published_time":"2020-05-02T10:48:07+00:00","article_modified_time":"2021-04-27T19:12:52+00:00","og_image":[{"url":"http:\/\/joapen.com\/blog\/wp-content\/uploads\/2020\/05\/Market-breadth-COTs-joapen.jpg","type":"","width":"","height":""}],"author":"joapen","twitter_misc":{"Written by":"joapen","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/#article","isPartOf":{"@id":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/"},"author":{"name":"joapen","@id":"https:\/\/joapen.com\/blog\/#\/schema\/person\/23919df2312175fe9c4609203595b217"},"headline":"Commitment of Traders (COT) in tradingview","datePublished":"2020-05-02T10:48:07+00:00","dateModified":"2021-04-27T19:12:52+00:00","mainEntityOfPage":{"@id":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/"},"wordCount":228,"commentCount":0,"publisher":{"@id":"https:\/\/joapen.com\/blog\/#\/schema\/person\/23919df2312175fe9c4609203595b217"},"image":{"@id":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/#primaryimage"},"thumbnailUrl":"http:\/\/joapen.com\/blog\/wp-content\/uploads\/2020\/05\/Market-breadth-COTs-joapen.jpg","articleSection":["Market Breadth","Product and Solutions"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/","url":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/","name":"Commitment of Traders (COT) in tradingview -","isPartOf":{"@id":"https:\/\/joapen.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/#primaryimage"},"image":{"@id":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/#primaryimage"},"thumbnailUrl":"http:\/\/joapen.com\/blog\/wp-content\/uploads\/2020\/05\/Market-breadth-COTs-joapen.jpg","datePublished":"2020-05-02T10:48:07+00:00","dateModified":"2021-04-27T19:12:52+00:00","description":"Some theory to add background I continue studying about market breadth, and this time I'm creating a script for the analysis of the Commitment of Traders. - joapen projects","breadcrumb":{"@id":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/#primaryimage","url":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2020\/05\/Market-breadth-COTs-joapen.jpg","contentUrl":"https:\/\/joapen.com\/blog\/wp-content\/uploads\/2020\/05\/Market-breadth-COTs-joapen.jpg","width":547,"height":493},{"@type":"BreadcrumbList","@id":"https:\/\/joapen.com\/blog\/2020\/05\/02\/commitment-of-traders-cot-in-tradingview\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/joapen.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Commitment of Traders (COT) in tradingview"}]},{"@type":"WebSite","@id":"https:\/\/joapen.com\/blog\/#website","url":"https:\/\/joapen.com\/blog\/","name":"joapen projects","description":"Just a place to write","publisher":{"@id":"https:\/\/joapen.com\/blog\/#\/schema\/person\/23919df2312175fe9c4609203595b217"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/joapen.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/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\/4654","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=4654"}],"version-history":[{"count":3,"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/posts\/4654\/revisions"}],"predecessor-version":[{"id":5463,"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/posts\/4654\/revisions\/5463"}],"wp:attachment":[{"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/media?parent=4654"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/categories?post=4654"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/joapen.com\/blog\/wp-json\/wp\/v2\/tags?post=4654"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}