Commoditer of trader (COT)
Forums › ProRealTime forum Français › Support ProBuilder › Commoditer of trader (COT)
- This topic has 9 replies, 3 voices, and was last updated 5 years ago by Bard.
-
-
09/03/2016 at 7:35 PM #12638
Bonjour à toute et a tous.
Je me permet de venir vers vous pour savoir si quelqu’un utilise les données du COT pour trader?
Si cela est le cas, est-ce que une personne connais un indicateur similaire au ” COT index” sur mt4 pour PRT?
Je me suis fait un fichier excel avec les données mais j’aimerais le comparer avec les prix sur une même fenetre sous PRT.
Merci d’avance
09/03/2016 at 9:19 PM #12641Bonjour, désolé on ne peut pas importer de données externes dans la plateforme par le code.
Le COT index devrait être un indicateur par défaut, mais cela implique d’avoir les informations pour un bon nombre d’instruments.Sur quel instrument appliques tu ton indicateur MT4?
09/03/2016 at 10:44 PM #12642Bonsoir
Merci Nicolas, je me douter un peu de la réponse suite au recherche faite sur le net mais je voulais en avoir confirmation.
De plus, non cela n’ai pas un indicateur par défaut sur mt4. Il a besoin d’un fichier txt pour importer et former les lignes a partir des valeurs importer. Donc, il faut le mettre a jours a chaque COT qui tombe.
En outre, moi, je voulais surtout l’utiliser pour les devices principal tel que EUR/USD, EUR/JYP et EUR/GBP. Je voulais me faire une idée de comment évolue les prix en fonction des differents protagoniste dans le rapport.
Ensuite, je me demande si on peux importer de manière manuel toute les données, cad, ecrire tout les valeurs a la mains. J’avoue ca ferais des lignes de code de 3Km de long mais ca serais une manière détourner d’avoir cette indicateur sous PRT. Il me semble que c’est possible, long mais possible.
Donc je me lancerais bien volontiers dans la long programmation mais je sais pas comment structurer.
Je m’explique avec un exemple:
Début de l’exemple
“A la data du 25 aout 2015, on aurait:
Commerciaux = 88343
Non-Commerciaux = -67857
Open-interest = 374977”
Fin de l’exemple.
Voila, je ferai cela pour chaque date, avec Open-interest en histo, et les commerciaux et non-commerciaux en point qui seront relier entre eux.
Quelqu’un pourrait me mettre cela en code? Enfin si cela est possible.
Merci d’avance.
09/04/2016 at 8:45 AM #12644Oui ce sera en effet un peu long à écrire ! Le code devrait ressembler à ceci pour ton indicateur COT pour prorealtime:
1234567if date=20150825 thenc = 88343nc = -67857oi = 374977endifreturn c as "commerciaux",nc as "non-commerciaux",oi as "open-interest"et reproduire les lignes 1 à 5 en changeant la date et les valeurs de c, nc et oi.
09/06/2016 at 8:47 PM #12742Merci Nicolas.
Donc je viens de le faire et je vous met ce que j’ai fait. Les dates et valeur sont prise entre le 01 janvier 2015 jusqu’au dernier COT sortie cad le 30 aout 2016.
Si cela peux intéresser quelqu’un.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527// Indicateur qui prend en compte les cotations du Commitments of Trades(COT) de EURO FXif date=20150106 thenc = 216595nc = -161040oi = 406624endifif date=20150113 thenc = 225225nc = -167851oi = 422426endifif date=20150120 thenc = 236197nc = -180730oi = 422426endifif date=20150127 thenc = 244263nc = -184745oi = 450262endifif date=20150203 thenc = 252964nc = -196309oi =449726endifif date=20150210 thenc = 245451nc = -194641oi =457209endifif date=20150217 thenc = 237642nc = -185582oi = 444139endifif date=20150224 thenc = 226961nc = -177736oi = 438411endifif date=20150303 thenc = 224647nc = -172389oi = 431217endifif date=20150310 thenc = 233480nc = -181073oi = 440733endifif date=20150317 thenc = 247689nc = -193774oi = 496465endifif date=20150324 thenc = 271855nc = -220963oi = 449508endifif date=20150331 thenc = 274469nc = -226560oi = 460950endifif date=20150407 thenc = 260005nc = -215258oi = 459746endifif date=20150414 thenc = 257300nc = -212347oi = 441624endifif date=20150421 thenc = 258225nc = -214645oi = 453518endifif date=20150428 thenc = 240692nc = -197766oi = 457610endifif date=20150405 thenc = 227911nc = -190127oi = 456919endifif date=20150512 thenc = 217168nc = -178976oi = 449254endifif date=20150519 thenc = 208434nc = -168339oi = 439122endifif date=20150526 thenc = 208443nc = -171740oi = 428580endifif date=20150602 thenc = 207136nc = -165512oi = 431927endifif date=20150609 thenc = 176715nc = -147974oi =428403endifif date=20150616 thenc = 122971nc = -89357oi = 436540endifif date=20150623 thenc = 131909nc = -99306oi = 350145endifif date=20150630 thenc = 134756nc = -100035oi = 345427endifif date=20150707 thenc = 141478nc = -99266oi = 346115endifif date=20150714 thenc = 143924nc = -107781oi = 354885endifif date=20150721 thenc = 153115nc = -112976oi = 356760endifif date=20150728 thenc = 140919nc = -104008oi = 366892endifif date=201500804 thenc = 152023nc = -113394oi = 357940endifif date=20150811 thenc = 152323nc = -115210oi = 367885endifif date=20150818 thenc = 122326nc = -92732oi = 361334endifif date=20150825 thenc = 91151nc = -66078oi = 356952endifif date=20150901 thenc = 88343nc = -67857oi = 374977endifif date=20150908 thenc = 108445nc = -81241oi = 363980endifif date=20150915 thenc = 102410nc = -84202oi = 383187endifif date=2015092 thenc = 102114nc = -81033oi = 311366endifif date=20150929 thenc = 112066nc = -87660oi = 315450endifif date=20151006 thenc = 108570nc = -88810oi = 322721endifif date=20151013 thenc = 97015nc = -80576oi =337606endifif date=20151020 thenc = 79329nc = -62566oi = 349720endifif date=20151027 thenc = 134450nc = -105934oi = 357133endifif date=20151103 thenc = 168944nc = -134334oi = 380564endifif date=20151110 thenc = 184555nc = -142939oi = 405462endifif date=20151117 thenc = 204152nc = -164177oi = 421967endifif date=20151124 thenc = 215922nc = -175484oi = 436801endifif date=20151201 thenc = 224522nc = -182845oi = 444626endifif date=20151208 thenc = 197108nc = -172331oi = 462447endifif date=20151215 thenc = 185311nc = -159961oi = 474921endifif date=20151222 thenc = 182071nc = -161047oi = 404837endifif date=20151229 thenc = 180422nc = -160550oi = 406533endifif date=20160105 thenc = 179372nc = -160643oi = 400497endifif date=20160112 thenc = 161751nc = -146451oi = 407105endifif date=20160119 thenc = 147467nc = -137015oi = 398570endifif date=2016026 thenc = 142818nc = -127215oi =400362endifif date=20160202 thenc = 111997nc = -87073oi = 402227endifif date=20160209 thenc = 74024nc = -63854oi =403939endifif date=20160216 thenc = 53764nc = -48205oi =441228endifif date=20160223 thenc = 53527nc = -46857oi = 429997endifif date=20160301 thenc = 88498nc = -68541oi = 422624endifif date=20160308 thenc = 89999nc = -71907oi = 417624endifif date=20160315 thenc = 87813nc = -77555oi = 433211endifif date=20160326 thenc = 73024nc = -66053oi = 322405endifif date=20160329 thenc = 67351nc = -63811oi = 324310endifif date=20160405 thenc = 59737nc = -53487oi = 330090endifif date=20160412 thenc = 55803nc = -55051oi = 338533endifif date=20160419 thenc = 51940nc = -46917oi = 333535endifif date=20160426 thenc = 44726nc = -39667oi =345563endifif date=20160503 thenc = 27558nc = -23619oi = 340200endifif date=20160510 thenc = 29484nc = -21872oi = 360461endifif date=20160517 thenc = 34116nc = -22587oi = 344978endifif date=20160524 thenc = 48501nc = -37895oi = 349559endifif date=20160531 thenc = 50714nc = -37654oi = 350242endifif date=20160607 thenc = 79538nc = -67112oi = 356178endifif date=20160614 thenc = 70705nc = -56489oi = 386010endifif date=20160621 thenc = 73398nc = -61346oi = 325402endifif date=20160628 thenc = 76653nc = -61934oi = 317400endifif date=20160705 thenc = 93750nc = -75327oi = 337273endifif date=20160712 thenc = 108149nc = -87660oi = 362649endifif date=20160719 thenc = 124255nc = -99891oi = 370372endifif date=20160726 thenc = 135735nc = -112600oi = 388905endifif date=20160802 thenc = 119326nc = -104103oi = 400035endifif date=20160809 thenc = 119514nc = -98399oi = 378500endifif date=20160816 thenc = 108405nc = -92508oi = 368693endifif date=20160823 thenc = 91174nc = -76658oi = 366037endifif date=20160830 thenc = 193898nc = -81925oi = 364044endifreturn c as "commerciaux",nc as "non-commerciaux",oi as "open-interest"1 user thanked author for this post.
09/06/2016 at 9:27 PM #1274309/15/2016 at 9:44 AM #1311911/21/2018 at 11:13 PM #85444Shay has great COT charts here: http://timingcharts.com
Click on COT in the white menu, backspace the “EC” out of the field/box and you will see all the different assets with COT reports.
Eg BP is British Pounds.Also Barchart is good, note, they have different colour codings: https://www.barchart.com/futures/commitment-of-traders/technical-charts/B6*0
Larry Williams’ wrote a book on the COT reports and gives a good overview here: https://www.ireallytrade.com/cotreport.html
01/31/2019 at 4:56 PM #90157An even better COT resource where you can enlarge the COT part of the chart:
https://www.barchart.com/futures/quotes/B6*0/technical-chart?plot=BAR&volume=0&data=WN&density=X&pricesOn=1&asPctChange=0&logscale=0&indicators=COTLC;COTFIN&sym=B6H19&grid=1&height=375&studyheight=200Note the main index of COT Reports is here (use the Go To COT chart in the top right and then you’ll be able to enlarge the Study from small to large i.e. the COT chart):
https://www.barchart.com/futures/commitment-of-tradersIf the Commercials are making multi year highs or lows, look for the equivalent to materialise in the market.
01/31/2019 at 5:06 PM #90159Larry Williams COT Index Formula:
The equation looks like this:
For example:
Current week’s value = 350Lowest value of last three years –150 Difference = 200
Highest high of last three years =750 Lowest low of last three years = –150
Difference =600
This week’s value is:
(200 ÷ 600) × 100 = 0.33 × 100 = 33%
What this equation does is place the current week’s reading into per- spective of the last three years of commercials’ buying and selling. The higher the percentage, above 80 percent, the more buying they have done (i.e., the more bullish they are). By the same token, when the index is low, usually below 20 percent, they have not been doing much buying; we can then conclude that they are facing the market with a negative bias. These are very good reference points: above 80 percent the market should rally, and below 20 percent it should decline.
Please notice I did not say when the market should rally. The index is not a timing tool for the most part.
The formula provides insight into the commercials that may not be seen at a glance or upon first blush. Here’s an example of how it helps us monitor the relative bullish position these guys have been taking. Picture, if you will, this situation: the commercials are net long at this week’s read- ing (they have purchased more than they have sold).
Sounds bullish. But it may not indicate a strong bullishness, which is where the importance of perspective comes into play. Consider a scenario where the commercials are net long 1,000 contracts. The most net long they have been in the past three years has been 9,200 contracts, and the least net long they have been is 500 contracts.
I note, in this example, that they are net long. But the size of their long position is small, 1,000 longs, compared to the greatest long position they have had in the past three years of 9,200 contracts. The math is: 1,000 minus
500 equaling 500, that result divided by the extreme figures of 9,200 minus 500 or 8,700. The step of 500 divided by 8,700 tells us that the relative position this week for the commercials’ percentage of bullishness is at 5.7 percent! Yes, they are net long, but compared to the past three years they are carrying a very small long position. This infers that they are at a very low level of bullishness relative to their positions over the past three years.
-
AuthorPosts
Find exclusive trading pro-tools on