PureBytes Links
Trading Reference Links
|
Here is mine. I believe an aquaintance sent it to me. I do not remember the
logic or process for it, but it seems to work:
((CLOSE*.1 > Abs( Ref(Mov(C,8,E),-5) - Ref(Mov(C,13,E),-8))
AND
CLOSE*.1 > Abs( Ref(Mov(C,8,E),-5) - Ref(Mov(C,5,E),-3))
AND
CLOSE*.1 > Abs( Ref(Mov(C,13,E),-8) - Ref(Mov(C,5,E),-3)))
OR
(CLOSE*.025 > Abs( Ref(Mov(C,8,E),-5) - Ref(Mov(C,13,E),-8))
AND
CLOSE*.025 > Abs( Ref(Mov(C,8,E),-5) - Ref(Mov(C,5,E),-3))
AND
CLOSE*.025 > Abs( Ref(Mov(C,13,E),-8) - Ref(Mov(C,5,E),-3))))
AND
(Ref(HIGH, -2) > Ref(HIGH, -4) AND Ref(HIGH, -2) > Ref(HIGH, -3) AND
Ref(HIGH, -2) > Ref(HIGH, -1) AND Ref(HIGH, -2) > Ref(HIGH, 0));
Bob Webb wrote:
> I heard nothing from my earlier request...
>
> Has anyone attempted programming Bill Williams' fractals: that is,
> indicating when a particular day's high is higher than the two days before
> and after it (and the same on the downside: when a day's low is lower than
> the two days before and after it).
>
> I'd appreciate help with programming this if someone has done it.
>
> Thanks.
>
> Bob.
>
> ==============+==============
> Robert L. Webb
> Webb.Bob@xxxxxxxx
> ===============+=============
|