[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: pls F1 me writing this Exploration



PureBytes Links

Trading Reference Links

Under filter, it would be something like:
C>MOV(C,60,S) AND REF((C>MOV(C,60,S)),-1) AND
REF((C>MOV(C,60,S)),-2) AND REF((C>MOV(C,60,S)),-3) AND
REF((C>MOV(C,60,S)),-4) AND REF((C>MOV(C,60,S)),-5) AND
REF((C>MOV(C,60,S)),-6) AND REF((C>MOV(C,60,S)),-7) AND
REF((C>MOV(C,60,S)),-8) AND REF((C>MOV(C,60,S)),-9) AND
REF((C>MOV(C,60,S)),-10) AND REF((C>MOV(C,60,S)),-11) AND
REF((C>MOV(C,60,S)),-12) AND REF((C>MOV(C,60,S)),-13) AND
REF((C>MOV(C,60,S)),-14) AND REF((C>MOV(C,60,S)),-15) AND
REF((C>MOV(C,60,S)),-16) AND REF((C>MOV(C,60,S)),-17) AND
REF((C>MOV(C,60,S)),-18) AND REF((C>MOV(C,60,S)),-19)

That should work...theoretically.  The only thing I'm concerned
about is the REF format.  However, I think it's correct.  The
Close is always above (or greater than '>') the MOV.  The
parentheses always match.  Because a 60 day MOV is rather slow,
you probably could shorten the formula by leaving out all of the
even numbered REFerences:
C>MOV(C,60,S) AND REF((C>MOV(C,60,S)),-1) AND
REF((C>MOV(C,60,S)),-3) AND REF((C>MOV(C,60,S)),-5) AND
REF((C>MOV(C,60,S)),-7) AND REF((C>MOV(C,60,S)),-9) AND
REF((C>MOV(C,60,S)),-11) AND REF((C>MOV(C,60,S)),-13) AND
REF((C>MOV(C,60,S)),-15) AND REF((C>MOV(C,60,S)),-17) AND
REF((C>MOV(C,60,S)),-19)

You might want to verify this with Equis.
Daniel.


"wsb3000@xxxxx" wrote:

> Hi
>
> i am trying to use the Explorer to find all stocks with the
> following:
> 1- c - mov(c,60,s)<0
> 2 Above condition should be in place for 20days
>
> I use c - Mov(c,60,s)<0  but how do i write the second?
>
> thanks in advance
>
> wsb