Screener Moving Average

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #34957 quote
    Henry
    Participant
    Average

    A request that was addressed to ProRealTime:

    I wish to modify this trend screener to:
    150>200
    50<200
    20<200
    20<50 Crossing up

    ma50=average[50]
    ma150=average[150]
    ma200=average[200]
    
    c1 = Close > average[50]
    c2 = ma50>ma150
    c3 = ma150>ma200
    c4 = summation[20](ma200>ma200[1])=20
    c5 = Close/lowest[250](low)>1.3
    c6 = Close/highest[250](high)>0.75
    
    TrendTemplate = c1 and c2 and c3 and c4 and c5 and c6
    
    screener[TrendTemplate]

     Suggestion for an answser:

    ma20=average[20](close)
    ma50=average[50](close)
    ma150=average[150](close)
    ma200=average[200](close)
    
    c1 = ma150 > ma200
    c2 = ma50 < ma200
    c3 = ma20 < ma200
    c4 = ma20 CROSSES OVER ma50
    
    screener[c1 and c2 and c3 and c4](variation AS "% Variation")
    Nicolas thanked this post
Viewing 1 post (of 1 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 Moving Average


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
Henry @henry Participant
Summary

This topic contains 1 voice and has 0 replies.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 05/09/2017
Status: Active
Attachments: No files
Logo Logo
Loading...