Screener with multiple sources(stocks and index)

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #176654 quote
    sflsfl
    Participant
    Average

    HI,

    I’d like to screen all the stocks whose RSi is below 30 and main trend is UP ( MM50 > MM200 ).

    No issue.

    But I want to another little thing, the RSI value of DAX is lower than 30.

    is that possible ?

    #176669 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    is below 30 means the same as is lower than 30, so there’s nothing to change for DAX.

    MyRsi = Rsi[14](close)
    MM50  = average[50,0](close)
    MM200 = average[200,0](close)
    L1    = MyRsi < 30
    L2    = MM50 > MM200
    Lcond = L1 and L2
    SCREENER[Lcond]
Viewing 2 posts - 1 through 2 (of 2 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 with multiple sources(stocks and index)


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
sfl @sfl Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by robertogozzirobertogozzi
5 years ago.

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