The indicator is a line that plots between 100 and -100.
0 being the mid point.
I just want to determine if it is rising or falling, and if it is above or below zero, in other words the mid point.
I then want to screen stocks and get a list with stocks that have the following criteria:
Indicator is rising, and indicator is above 0
The indicator looks something like this (but in this example the scale in not between 100 and -100):
IND:=
(Mov((Mov(C,100,S) - Ref(Mov(C,100,S),-15)- LLV(Mov(C,100,S) - Ref(Mov(C,100,S),-15),14))/(HHV(Mov(C,100,S) - Ref(Mov(C,100,S),-15),14)-(LLV(Mov(C,100,S) - Ref(Mov(C,100,S),-15),14))),14,E)*100);
IND;