Hello,
I’m looking for the code of the screener MACD(26,12,9) crossing with its signal line?
I think it’s very simple to code and I’ve seen versions here and there but none seem to work!
Thank you in advance for your cooperation
There you go:
// MACD 12,26,9 (formula)
//
MyMACD = ExponentialAverage[12](close) - ExponentialAverage[26](close)
MySignalLine = ExponentialAverage[9](MyMACD)
//MyHisto = MyMACD - MySignalLine
CrossOver = (MyMACD CROSSES OVER MySignalLine) OR (MyMACD CROSSES UNDER MySignalLine)
SCREENER[CrossOver]
Post your topic in the correct forum:
_ ProRealTime Platform Support: only platform related issues.
_ ProOrder: only strategy topics.
_ ProBuilder: only indicator topics.
_ ProScreener: only screener topics
_ General Discussion: any other topics.
_ Welcome New Members: for new forum members to introduce themselves.
I move it to the correct one.
Thank you 🙂