RSI divergenza time frame inferiore

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #200993 quote
    andrea trevisanandrea trevisan
    Participant
    Average

    Il mio obbiettivo è creare uno srceener che mi trovi l’ipervenduto/comprato in un time frame a 4H e mi crei un filtro a time frame 1H che cerchi una divergenza rispetto al time frame più alto.

    Il problema e che a time frame 1H ho tre condizioni possibili alternabili, mi basta che una sola  sia verificata;  le ho chiuse in un unica variabile (c5)  collegandole con “or”, sembra funzionare ma non ne ho la certezza.

    // variabili
    MIOrsi = RSI[14](close)
    MIAmedia = average[9](MIOrsi)

    timeframe (4Hours)
    c1 = MIOrsi < 30

    Timeframe(1hour)
    c2 = MIOrsi > 30
    c3 = MIOrsi > MIAmedia
    c4 = momentum > 0
    c5 = c2 or c3 or c4

    screener [c1 and c5]

    #200994 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    Le prime due righe in quale timeframe dovrebbero essere  (attualmente sono su quello visualizzato sul grafico) ?

    Cerchi una divergenza tra cosa?

    #200997 quote
    andrea trevisanandrea trevisan
    Participant
    Average

    Provo a spiegarmi meglio su 4H ipervenduto su quel time frame sempre valido.

    su time frame 1H deve essere valido o c1 o c2 o c3 considerando rsi time frame 1h e media mobile time frame 1H

    forse così va meglio…

    // Ipervenduto time frame 4H (sempre valido)
    timeframe (4Hours)
    MIOrsi = RSI[14](close)
    c1 = MIOrsi < 30
    // deve essere valido o c2 o c3 o c4
    Timeframe(1hour)
    MIOrsi1 = RSI[14](close)
    MIAmedia = average[9](MIOrsi)

    c2 = MIOrsi1 > 30
    c3 = MIOrsi > MIAmedia
    c4 = momentum > 0
    c5 = c2 or c3 or c4

    screener [c1 and c5]

    #200998 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    Mi sembra funzioni correttamente. L’ho provato sul Forex + Azioni Italia.

    #201018 quote
    andrea trevisanandrea trevisan
    Participant
    Average

    Grazie.

Viewing 5 posts - 1 through 5 (of 5 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

RSI divergenza time frame inferiore


ProScreener: Scansione Mercati & Screener

New Reply
Author
Summary

This topic contains 4 replies,
has 2 voices, and was last updated by andrea trevisanandrea trevisan
3 years, 12 months ago.

Topic Details
Forum: ProScreener: Scansione Mercati & Screener
Language: Italian
Started: 09/19/2022
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...