The new CAM Template for January

A forum for all EdgeRater users

Moderator: Chris White

Post Reply
nibor200
Posts: 63
Joined: Wed Oct 22, 2014 11:03 am

The new CAM Template for January

Post 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.
Chris White
Posts: 200
Joined: Mon Nov 29, 2010 9:21 pm

Re: The new CAM Template for January

Post 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.
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

Re: The new CAM Template for January

Post 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;
Post Reply