Moving Average w Sqrt Zones

A forum for all EdgeRater users

Moderator: Chris White

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

Moving Average w Sqrt Zones

Post by henry1224 »

PRC:=(H+L)/2;
UZ7: MA(Ref(Pow(SQRT(PRC)+.875,2),1),N),ColorViolet;
UZ6: MA(Ref(Pow(SQRT(PRC)+.75,2),1),N),ColorGold;
UZ5: MA(Ref(Pow(SQRT(PRC)+.625,2),1),N),ColorViolet;
UZ4: MA(Ref(Pow(SQRT(PRC)+.5,2),1),N),ColorGold;
UZ3: MA(Ref(Pow(SQRT(PRC)+.375,2),1),N),ColorViolet;
UZ2: MA(Ref(Pow(SQRT(PRC)+.25,2),1),N),ColorGold;
UZ1: MA(Ref(Pow(SQRT(PRC)+.125,2),1),N),ColorViolet;
MZ: MA(Ref(Pow(SQRT(PRC),2),1),N),ColorBlack;
LZ1: MA(Ref(Pow(SQRT(PRC)-.125,2),1),N),ColorViolet;
LZ2: MA(Ref(Pow(SQRT(PRC)-.25,2),1),N),ColorGold;
LZ3: MA(Ref(Pow(SQRT(PRC)-.375,2),1),N),ColorViolet;
LZ4: MA(Ref(Pow(SQRT(PRC)-.5,2),1),N),ColorGold;
LZ5: MA(Ref(Pow(SQRT(PRC)-.625,2),1),N),ColorViolet;
LZ6: MA(Ref(Pow(SQRT(PRC)-.75,2),1),N),ColorGold;
LZ7: MA(Ref(Pow(SQRT(PRC)-.875,2),1),N),ColorViolet;


Under the parameter tab

N double 10 3 100
Post Reply