Hi Everyone, I am trying to catch the stocks composing the DAX 30 whose relative force vs the Index crosses under the 0 line, meaning that the stock is underperforming the Index ; I did this little code but how to identify the DAX as an asset? ProScreener does not allow to select the DAX (I am with IG on CFD) Thanks for your help Chris
// code proscreener d'exemple
TIMEFRAME(daily)
CloseVal = Close
EQUITYFRAME("shares-xetra","dax")
CloseInd = Close
EQUITYFRAME(default)
Ratio = (CloseVal / CloseInd) *100
RelativeStrength = (Ratio - Ratio[1]) *100
Signal = RelativeStrength crosses under 0
SCREENER(Signal AS"RelativeStrength")
EQUITYFRAME instruction can’t retrieve value from another shares list, that’s why you can’t retrieve DAX value in the screener because it is in another one.. Therefore, calculating relative force index with a share compared to its index is impossible .. 😐
Any update on this?
Comparing one stock with its index is a basic need, will i t be fullfiled with Prorealtime V12, anyone?
Thanks
You can make it with indicators: look for “relative strength” in your indicator list.
For screeners, look at these more recent codes which allow the comparison between index and a share:
screener force relative
Croisement EMA avec Force relative comparaison
Indeed i can’t use EQUITYFRAME to build a relative strength line in order to measure growth stock performance versus an index.
Will this feature be available soon?
Best regards.