The 30 min CCI has moved to overbought, however I see a large spread between the average and the 30 min. CCI. In the past, this usually meant a breakout trade. So if the 5 min. CCI crosses anytime soon, I won't be going short.
Quote from no_pm_please:
The 30 min CCI has moved to overbought, however I see a large spread between the average and the 30 min. CCI. In the past, this usually meant a breakout trade. So if the 5 min. CCI crosses anytime soon, I won't be going short.
Quote from ww_nyc:
NPP, is it possible you can give a reading of 30min CCI and CCIAvg value at any point of time. I am still trying to see whether the discrepency of CCIAvg for 30 minutes between TS8.1 and TS2000i exist or not. From what you described here for Today, it sound very similar to my TS8.1 chart. Also I don't know if you saw jerryz's post about a possible problem in CCIAvg code in 2000i.
I did try to code up your method in TS8.1 code. If you are interested, I can post it this evening. (It is for 8.1, may not work for 2000i.)
Quote from jerryz:
this is what's happening in TS2000i.
to replicate TS2000i's 30min CCI average exactly, you have to use this code:
Code:Plot1(cci(20) of data2,"CCI",red); Plot2(average(plot1,10),"CCIAvg",green);
strangely, however, Plot2 is not plotting the 10 period average. if you calculate the numbers in Excel, your averages will not match Plot2.
to plot the 10 period average that does match Excel, you have to use this code:
Code:value1 = cci(20) of data2; Plot1(value1,"CCI",red); Plot2(average(value1,10),"CCIAvg",green);
these two pieces of code should plot the same thing, yet they are not. does anyone know what's going on?
Quote from no_pm_please:
As of the 9am CT bar I have 30 min CCI at 100.65 and 30 min. Ave CCI at -6.55.
If you have some code even in 8.1 I'd love to work with it. My attempts have been poor. I can translate the code to 2000i and check the trades with my statements for March. If they match I'll post the 2000i code and run a backtest until 1999. Then, I'll see what I can do to improve it....I've got tons of ideas.