Hey guys,
I was wondering if you could help me create a relative price strength screener.
The logic is as follows,
Price as at close / price of index i.e S&P500 = relative price
Then scan the market for relative price being at all time highs
Any help would be appreciated,
Cheers,
Brad
Try this one (not tested):
EQUITYFRAME("Indices - MIB","MIB")
Index = close
//
EQUITYFRAME(default)
Stock = close
//
Ratio = Stock / Index
Cond = highest[254](Ratio)
SCREENER[Cond](Ratio AS "Performance")
Change the name of Index as best fits you, according to the names coded by PRT in the market list when searching assets.
Hello,
thanks for the screener.
Is this screener according to Levy (hence relative strength?)
Greetings
Nikolas