Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 10/29/2004(UTC) Posts: 1,394 Location: Glastonbury, CT
Was thanked: 2 time(s) in 2 post(s)
|
You will need the PowerPivots plus Add-on for this indicator to work
Plot this on the price chart, select a time frame at least 2X the time frame you are charting
TF:=Input("TFactor",1, 1000, 3);
OF:=Input("Offset", -100, 100, 0);
Plot:=Input("Plot 1=odd 2= even 3= both",1,3,3);
TCH:=ExtFml("PowerPivots.TimeCapsules",H,TF,OF);
TCL:=ExtFml("PowerPivots.TimeCapsules",L,TF,OF);
RNG:=TCH-TCL;
78R:=If(plot<>2,Rng*.875+TCL,TCH);
68R:=If(plot<>1,Rng*.75+TCL,TCH);
58R:=If(plot<>2,Rng*.625+TCL,TCH);
48R:=If(plot<>1,Rng*.5+TCL,TCH);
38R:=If(plot<>2,Rng*.375+TCL,TCH);
28R:=If(plot<>1,Rng*.25+TCL,TCH);
18R:=If(plot<>2,Rng*.125+TCL,TCH);
TCH;78R;68R;58R;48R;38R;28R;18R;TCL;
|