Screener MACD crossing with signal line

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #191171 quote
    ScrappydooScrappydoo
    Participant
    Average

    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

    #191181 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    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]
    #191183 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    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 🙂

    Scrappydoo thanked this post
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

Screener MACD crossing with signal line


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
Scrappydoo @scrappydoo Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by robertogozzirobertogozzi
4 years, 5 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 04/04/2022
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...