Hi Optuma team,
is it possible to get the following workbook for downloading you have published on Twitter:

What is of special interest for me are of course the scripts of the charts and watchlist.
As always many thanks for your great service.
Thomas
Hi Thomas,
For Cross below 50MA:
MA1 = MABARS=50, CALC=Close);
CLOSE() CrossesBelow MA1
Percent from 50MA:
MA1 = MA(BARS=50, CALC=Close);
((CLOSE() - MA1) / MA1)*100
Number of ETFs > 50MA (requires custom market breadth module, run on the Sector ETF symbol list, Breadth Action set to Count):
CLOSE()>MA(BARS=50, CALC=Close)
Hi Darren,
thank you very much for your efforts.
The “number of ETFs > 50MA” was my main issue, you use the custom market breadth module. That’s it, a piece of information more.
Thanks,
Thomas