Metastock Exploration Formula |
Stocks Closing Above 60 Day High |
To find the securities that have closed above their high today (the last
trading day in the database) for the first time, I have written this MetaStock Explorer.
This formula does two things:
1) It lists only those securities which have met the required conditions
only on the last trading day.
2) The new 60-day high must have taken place only on the last trading day.
{Stocks Closing Above 60 Day Highs}
{closing above the 60-day high of the close}
close>ref(hhv(close,60),-1)
if you want those that are {closing above the 60-day intraday high}
close>ref(hhv(high,60),-1) |
|
Col B: |
{Previous 60-day High} Ref(HHV(H,60), -1) |
|
Col C: |
{Current 60-day High} HHV(H,60) |
|
|
Filter: |
(colA>colB) AND (Ref(C,-1)[
] |
|
Did you know ...
How can I scan for specific candlestick patterns in MetaStock?
To scan for specific candlestick patterns in MetaStock, go to the "Explorer" or "Scanning" menu, select the desired candlestick patterns from the list, define the scan criteria, and run the scan to find matching patterns.
|