Page 1 of 1

The new CAM Template for January

Posted: Fri Feb 16, 2018 10:28 am
by nibor200
My version of the new CAM template seems to be missing the 4 different colors for the price bars, that Dr. Star identifies in her TASC article and the Help Video url on the Parameters tab sheet just takes me to the Ederater home page and there doesn't appear to be any video link for this template.

Anybody have the 4 price bar colors and/or a working video link?

Thanks,
Ed S.

Re: The new CAM Template for January

Posted: Fri Feb 16, 2018 3:14 pm
by Chris White
The chart connected to the CAM template does not have colored bars as per the article.

One way to see the actual CAM events on the chart instead of using colored bars is to add the following indicators to a sub area:

CAM_UP
CAM_PB
CAM_DN
CAM_CT

Once you have created your own chart layout you can save it and use it for future viewing of these events.

Re: The new CAM Template for January

Posted: Sun Feb 25, 2018 5:19 am
by henry1224
Here is a binary indicator for the Cam Indicator

A:=ADX(High,Low,Close,10);
B:="MACD(12,26,9)[MACD]";
CAM_UP:If(A>=Ref(A,1) & B> Ref(B,1),1,0),Width2,ColorGreen;
CAM_PB:If(A<=Ref(A,1) & B< Ref(B,1),1,0),Width2,ColorYellow;
CAM_DN:If(A>=Ref(A,1) & B< Ref(B,1),1,0),Width2,ColorRed;
CAM_CT:If(A<=Ref(A,1) & B> Ref(B,1),1,0),Width2,ColorBlue;

FILLRGN(Cam_CT==1,1,0),ExtendLR,Brush#9500FFFF;
FILLRGN(Cam_PB==1,1,0),ExtendLR,Brush#95FFFF00;
FILLRGN(Cam_UP==1,1,0),ExtendLR,Brush#9500FF00;
FILLRGN(Cam_DN==1,1,0),ExtendLR,Brush#95FF0000;