CCI Woodie like - page 12

 

Well, I just wanna get the indicator to work the way it supposed to.. What I do is just try and error.. anyway, if you think that it will not work that way, mind if you help me solving the problem?

 

no, there is much easier to criticise...

that not that simple - integrated formula;

in your first picture i see indi is correct - 0 line was broken on 6-th bar; we can't see under humongous lsma square arrows, data window sayes - cci14 was 4.7590; >0

you think it might not switch beck colors going from up/dn over zero on 6'th bar?

could be something with the counter? (6-th bar suppose to be either red or blue, not gray, if i understood right?)

 

you think it might not switch beck colors going from up/dn over zero on 6'th bar?

could be something with the counter? (6-th bar suppose to be either red or blue, not gray, if i understood right?)

=================================

nope, it will not switch color.. hm.. i don't know.. can't figure out.. i checked the code but from what i can read, it's nothing wrong with the counter.. the part I change code is where it will affect what the indicator will show..

 
yyc196:
Hi linuxser,

Is it possible to make an alert for the following indicator for WCCI pattern.

If not otherwise can you tell me what command to use for sound alert.

Thanks

Regards

Hai linuxser if refer to above post i need ur view on WcciPatterns_v1.mq4 ..

Do you think the pattern generate by numbering is accurate..what i mean especially when ghost pattern trigger by that WcciPatterns_v1.mq4 .

Sometimes the pattern is not accurate when i compare with how the ghost pattern suppose to look like..pls advise.

 

WoodiesCCIDocPAck.part01.rar

WoodiesCCIDocPAck.part02.rar

WoodiesCCIDocPAck.part03.rar

WoodiesCCIDocPAck.part04.rar

WoodiesCCIDocPAck.part05.rar

WoodiesCCIDocPAck.part06.rar

Hai anyone, if refer to above file...may i know what is the diffrent of this pack with

woddie heart panel the original one...?

Pls advise also what is the different with :

CCI_Woodies_Lnx_v1_1_TFmod.mq4 post by nittany1

Im getting confuse now about which one the best use to avoid whipsaw..

Frm this thread i noticed the one develop by linuxser is much better with the

original one woodie heart panel..should i go for it..pls advise...

I hv understand on woodie pattern. The only thing right now to choose the best that

suit with Metatrader.

I noticed when i use woodie heart panel my metatrader become so slow and heavy. Is this due to woodies heart panel?

Appreciate assistance.

 
 

Woodie Pivot

Hi

anyone here have Woodie Pivot?

Woodie Pivot Points

R4 = R3 + RANGE

R3 = H + 2 * (PP - L) (same as: R1 + RANGE)

R2 = PP + RANGE

R1 = (2 * PP) - LOW

PP = PP = (HIGH + LOW + OPEN + OPEN) / 4

S1 = (2 * PP) - HIGH

S2 = PP - RANGE

S3 = L - 2 * (H - PP) (same as: S1 - RANGE)

S4 = S3 - RANGE

using OPEN = TODAY'S OPEN, and yesterday's HIGH and LOW
 

Adaptive unsmoothed and adaptive smoothed indicator

I came across Tucker's report on the above-mentioned indicators and found it very interesting. I am keen to get my hands on these indicators to try out myself but couldn't seem to locate them anyway in the anywhere. Can anybody help?

 

Sorry, I am referring to the CCI

 

Woodie Pivots

Hi guys,this what i made today follow from this code

PP = (YesterdaysHigh + YesterdaysLow + (TodaysOpen x 2)) / 4

R1 = (PP x 2) - YesterdaysLow

S1 = (PP x 2) - YesterdaysHigh

R2 = PP + R1 - S1

S2 = PP - R1 + S1

R3 = PP + R2 - S2

S3 = PP - R2 + S2

eSignal Central Forums - Woodie Pivots

extern bool backtest = true;

extern bool showtitle = true;

extern int position = 1;

extern int labelsize = 1;

extern int textsize = 7;

extern color colorpivot = Red;

extern color colorresistance = DimGray;

extern color colorsupport = DimGray;
Files: