Coppock Curve OSC

This is the place to discuss EdgeRater Chart Script

Moderator: Chris White

Post Reply
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

Coppock Curve OSC

Post by henry1224 »

Under the parameters tab

LB1 double 5 2 100
LB2 double 34 3 100
Length double 13 4 100
ALength Double 5 2 100


Here is the code


Price:= (H+L)/2;
A:= (Price - Ref(Price,LB1)) /Ref(Price,LB1);
B:= (Price - Ref(Price,LB2)) /Ref(Price,LB2);
OST: WMA(A+B,Length),ColorStick;
OSTAvg : MA(OST,ALength),ColorBlue;
UZ : MA(OST,34)+(1.3185*Std(OST,34)),ColorViolet;
LZ: MA(OST,34)-(1.3185*Std(OST,34)),ColorViolet;
Post Reply