Metastock Exploration Formula |
52 Week Hi-Lo Exploration |
{If you want both the conditions to be satisfied in the same query, just
join the two filters by the AND operator:}
Filter: (ColA >= (0.9*(ColB)) AND ColB >= ColC)
{One problem with the 52-wk High and 52-wk Low formula--every day you've got
to change the values for dayofmonth(), Month() and Year() functions. The
formula given above assumes that you would be running the query on May 07,
1998. Change the values of the above functions accordingly.} |
|
Col B: |
{52-week High} HighestSince(1, (DayOfMonth()=08 AND Month()=05
AND Year()=1998), H) |
|
Col C: |
{52-week Low} LowestSince(1, (DayOfMonth()=08 AND Month()=05 AND
Year()=1998), L) |
|
Filter: |
{Choose one of these filters}
{Filter 1:} ColA >= (0.9*(ColB))
{Filter 2:} ColB >= 2*ColC |
|
Did you know ...
How do I optimize my trading system parameters in MetaStock?
To optimize trading system parameters in MetaStock, use the "System Tester" or "System Testing" feature, specify the parameters to optimize, set the optimization range, and run the optimization to find the best parameter values.
|