Metastock Indicator Formula |
% close based on start date |
Find stocks that close 10% lower (or higher) than the close on a previous specific date |
Formula: |
Col A
D:=16;
M:=11;
Y:=2006;
ValueWhen(1,DayOfMonth()=D AND Month()=M AND Year()=Y,C)
Col B
D:=15;
M:=11;
Y:=2006;
ValueWhen(1,DayOfMonth()=D AND Month()=M AND Year()=Y,C)
Filter
colA<=colB*.8 |
|
|