PureBytes Links
Trading Reference Links
|
Hello ,
input:switch(1);
var:r(0),f(0),hf(0),lf(0),rr(0);
{
indicator code by www.markbrown.com
user function idhigh/idlow code by rick saidenberg
the input switch when set to 1 allows both of the retracement lines
to be viewed at all times. the input switch when set to 0 allows only
one of the retracement lines to be viewed depending upon the price
closing above or below the center point created from the mid point
between the intraday high and the intraday low.
}
r=IDhigh-IDlow;
f=r*.68;
hf=IDhigh-f;
lf=IDlow+f;
rr=(IDhigh+IDlow)/2;
if switch=1 then begin
if t>1000 then plot1(hf,"hf");
if t>1000 then plot2(lf,"lf");
plot3(idhigh,"high");
plot4(idlow,"low");
end;
--
Best regards,
Research mailto:research@xxxxxxxxxxxxx
To unsubscribe from this group, send an email to:
realtraders-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Attachment:
Description: "Autofib.ela"
Attachment:
Description: "fib1.gif"
Attachment:
Description: "fib0.gif"
|