CCI Woodie like - page 19

 
mrtools:
. Changed the name to CCI Cross made it easier to make it MTF.Notice in picture have it on H1 timeframe indicator set to H4 timeframe, not sure why have 3 signals.

just want to emphasize - CCI Cross MTF indi - for traders familiar good enough with cci and cci crosses behavior on current timeframes (not mtf) and mtf indicators: mtf show you picture what going on Now on higher timframes - and as any indicator will and should change its value according to the price change on open bar - until this bar closes, stop changing, fixes it's value (and indi goes to change another (new, current) open bar;

so it would take 4 15min bars to close until 1 H1 bar closes; 12 5 min bars;

until that mtf indicator will show exact 1h cci current (closing) value on 5min chart from 1h open to 1h close which would take 12 5 min bars

history in -between doesn't keeps in metatrader (and other similar charting software), it shows straight line from close to close (in mtf indis it would look like one big step, which moves together with currrent 1H cci bar); if bar still open (current close) - everything in- between - gone; so until bar close any indicator on any timeframe, there is no way to see in history where it was from open to close

that's why people wait until bar closes and signals considered valid after bar close; so be careful and aware what mtf indicator shows; if you want to backtest your strategy on history - wait until higher TF bar close and cross signal becomes valid;

 

Thanks mrtools and fxbs !

Thanks mrtools and fxbs.

I want to post an image to explain my observation about simultaneous MTF CCI crossings on chart, but it appears I cannot post attachments.

How can I post an image? I have taken a screenprint and saved the relevant part as jpg.

Please guide.

Regards.

 

Finally!

Thank you very much Mr tools!

mrtools:
This one was posted earlier in this thread just did some tweaks, the picture is with cci 50,21 & 7 crossing 0, 50 is big outline arrow , 21 is aqua and magenta box and 7 is small white figure, if you look closely some instances where all 3 crossed together usually with big moves.For just 2 Cci's just change the middle to either the very slow parameter or fast parameter. edit: updated indicator so can use fast,slow.and very slow in any combination.
 

CCI Woodie

Hi everybody,

I need CCI Woodie which is H4 , H1, M30, M15 Timeframe shown on my M5 timeframe.

//+------------------------------------------------------------------+

//| SuperWoodiesCCI.mq4 |

//| duckfu |

//| Daily Dopeness |

//+------------------------------------------------------------------+

#property copyright "duckfu"

#property link "http://www.dopeness.org"

#property indicator_separate_window

#property indicator_buffers 5

#property indicator_color1 White // CCI Colour (note the superfluous vowel, cheers mates

#property indicator_color2 Yellow // TCCI Colour

#property indicator_color3 LimeGreen // Long Trend Histogram Colour

#property indicator_color4 Red // Short Trend Histogram Colour

#property indicator_color5 Blue // No Trend Histogram Colour

//---- input parameters

extern int CCI_Period=50;

extern int TCCI_Period=0;

//---- buffers

double ExtCCIBuffer[];

double ExtTCCIBuffer[];

double ExtLongHistBuffer[];

double ExtShortHistBuffer[];

double ExtFlatHistBuffer[];

//+------------------------------------------------------------------+

//| Custom indicator initialization function |

//+------------------------------------------------------------------+

int init(){

//---- indicators

SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,1);

SetIndexBuffer(0,ExtCCIBuffer);

SetIndexStyle(1,DRAW_LINE);

SetIndexBuffer(1,ExtTCCIBuffer);

SetIndexStyle(2,DRAW_HISTOGRAM,STYLE_SOLID,1);

SetIndexBuffer(2,ExtLongHistBuffer);

SetIndexStyle(3,DRAW_HISTOGRAM,STYLE_SOLID,1);

SetIndexBuffer(3,ExtShortHistBuffer);

SetIndexStyle(4,DRAW_HISTOGRAM,STYLE_SOLID,1);

SetIndexBuffer(4,ExtFlatHistBuffer);

ArrayInitialize(ExtCCIBuffer,0);

ArrayInitialize(ExtTCCIBuffer,0);

ArrayInitialize(ExtLongHistBuffer,0);

ArrayInitialize(ExtShortHistBuffer,0);

ArrayInitialize(ExtFlatHistBuffer,0);

//----

return(0);

}

//+------------------------------------------------------------------+

//| Custor indicator deinitialization function |

//+------------------------------------------------------------------+

int deinit(){

//---- TODO: add your code here

//----

return(0);

}

//+------------------------------------------------------------------+

//| Custom indicator iteration function |

//+------------------------------------------------------------------+

int start(){

int i,j,limit,counted_bars=IndicatorCounted();

int uptrending=0,downtrending=0;

//---- TODO: add your code here

if(counted_bars<0) return(-1);

//---- last counted bar will be recounted

if(counted_bars>0) counted_bars--;

limit=Bars-counted_bars;

//---- main loop

for(i=0; i<limit; i++){

ExtCCIBuffer=iCCI(NULL,0,CCI_Period,PRICE_TYPICAL,i);

ExtTCCIBuffer=iCCI(NULL,0,TCCI_Period,PRICE_TYPICAL,i);

ExtFlatHistBuffer=ExtCCIBuffer;

}

for(i=0;i<limit;i++){

for(j=0;j<6;j++){

if(ExtCCIBuffer > 0){

uptrending++;

} else if(ExtCCIBuffer < 0){

uptrending=0;

}

}

if(uptrending>5){

ExtLongHistBuffer=ExtCCIBuffer;

ExtShortHistBuffer=0;

ExtFlatHistBuffer=0;

}

}

for(i=0;i<limit;i++){

for(j=0;j<6;j++){

if(ExtCCIBuffer < 0){

downtrending++;

} else if(ExtCCIBuffer > 0){

downtrending=0;

}

}

if(downtrending>5){

ExtShortHistBuffer=ExtCCIBuffer;

ExtLongHistBuffer=0;

ExtFlatHistBuffer=0;

}

}

return(0);

}

//+---------------------------------------

 

CCI Alert when crossing lines (+/- 100, ....)

CCI Alert

--------------------------------------------------------------------------------

Hi, I did some research about a CCI indicator with a Sound / Email Alert but I did not get what I am looking after.

This indicator I solicit, should permit two parameters : CCI period (14, 8, ...) and the value of a line (+/-100, or +/-200, ...) and it should first draw this CCI indicator in a separate panel and second send an audible alert and/or an email when the CCI crosses the horizontal line.

TIA

BBF

 

I am new, need some advice

Hi all,

I just start FXtrading last year and blowed 90% of my account, I just found out about CCI indicator, I have a few questions, Please I need your advice.

I am not good on trend trading and neither swing trading, so I think I might have a little chance on daytrading (scraping).

1, Can anyone tell me what is the best time frame to use the cci indicator to try to make 10-20 pips on GBP/JPY?

2, which pattern is the safer pattern in the Woodie CCI to enter the trade?

3, what is the best stop lost(how many pips) to use to trade try to gain 10 -20 pips?

Thank you.

Paul

 
paulcheung:
Hi all,

I just start FXtrading last year and blowed 90% of my account, I just found out about CCI indicator, I have a few questions, Please I need your advice.

I am not good on trend trading and neither swing trading, so I think I might have a little chance on daytrading (scraping).

1, Can anyone tell me what is the best time frame to use the cci indicator to try to make 10-20 pips on GBP/JPY?

2, which pattern is the safer pattern in the Woodie CCI to enter the trade?

3, what is the best stop lost(how many pips) to use to trade try to gain 10 -20 pips?

Thank you.

Paul

You need to read the PDF tutorial from first posts first, and then some questions will be self answered.

 

Mrtools

Thank you so much for doing these cci cross indicators.. could you take either one, say the cci cross and add a new feature where I can select

to only show when all three cci's entered cross at the same time..

so don't paint all the other individual crosses, etc.. just paint a thumbs

up hand for a simultaneous up cross and a thumbs down for a simultaneous

down cross.. and then that is all that will be painted, when all three

cci's entered cross at the same time and save alot of alert stuff

on my chart since for my trading, and I am sure others, I just

want to know about the cross when all three do it.

I am sure others and I might find it useful as well for when 2 of the 3 do it

at the same time.. so maybe a thumbs up/down for when all 3 match

and a check mark or circle, or another gif for a 2 match. But we can select

to only show when 2 or 3 cross at the same time and not every

cci cross so we just see the important crosses like this.

If you could add this option, it would be so hugely appreciated!!

Brian

mrtools:
. Changed the name to CCI Cross made it easier to make it MTF.Notice in picture have it on H1 timeframe indicator set to H4 timeframe, not sure why have 3 signals.
 
thank you so much..awesome like this indi!

Hey guys and gals..if someone could code that indicator for me please I will add to my charts and show my full setup! Please.. I need an indicator

that will alert pop up with alarm and paint arrows for cross direction

when more than 1 cci I enter are crossing the 0 line at the same time.

NOT that they are above the 0 line at the same time, but that

say CCI 7 and CCI 50 are crossing up thru their 0 line at the same

time! Please.. it really will be worth it.

Now indicator can be used for 3 crosses in one, user can define cross level, but looking at picture using default settings on daily could be good for your wallet.

Generousforex wondering when we can see your full setup!

 

Mr Tools!

Awesome..thank you so much.

Just ONE tiny last request..this is truly awesome. Can you

add a space feature so we can add space between the

alert being painted and the candle? So it can be arranged

with other indicators like might alert on the same

candle.

That would be great.. thank you so much Mr Tools!

I will put that on and send one of my setups up.. thanks

again. Awesome.

Brian

Reason: