|
Ronen Poltek
2010-09-07 06:08:36
|
|
Dear Sirs
I am running the following filter on a static list and the results are in mismatch to the criteria, to my understanding.
var2 = close > 0.5;
var3 = open < Ma(4,_MaEma);
var4 = open < Ma(8,_MaEma);
var5 = open < Ma(21,_MaEma);
var6 = close > Ma(4,_MaEma);
var7 = close > Ma(8,_MaEma);
var8 = close > Ma(21,_MaEma);
filter = (var2) && (var3) && (var4) && (var5) && (var6) && (var7) && (var8);
Today Sep. 7 2010 I have run the filter and one of the stocks that passed the filter is GS with the following values:
Open 141.62
Close 147.29
While the values of the Moving Averages is:
EMA 4 - 142.5693
EMA 8 - 141.2124
EMA 21 - 144.3681
As can be seen the EMA 8 value is lower then the open value.
Thank you for a great product
Ronen Poltek
|
|