Hi @Mary
You can use “EquityFrame” in your screener.
This allows you, for example, to calculate the relative strength between a stock and its index…
(excerpt of the ProScreener documentation)
This screener allows us to visually display the correlation between a security and other securities
in the same market. We calculate the ratio of the closing prices of 2 securities selected using “EQUITYFRAME”. We then calculate the difference between the current level of the ratio and the ratio for the previous day.
|
TIMEFRAME(daily)
CloseVal = Close
EQUITYFRAME(“NASDAQ”,”AMZN”)
CloseInd = Close
EQUITYFRAME(default)
Ratio = (CloseVal / CloseInd) *100
RelativeStrength = (Ratio – Ratio[1]) *100
SCREENER(RelativeStrength AS”RelativeStrength”) |