Screener wekly

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #39155 quote
    pignolaus
    Participant
    Average

    Buongiorno, sono. Nuovo del forum. Chiedo cortesemente se qualcuno può indicarmi il codice per fare uno screener che ricerchi il cross di RSI a 5 periodi sulla linea del valore 50 e su grafici settimanali.   Grazie. Cordiali saluti

    #39170 quote
    Nicolas
    Keymaster
    Master

    Vorrei aiutarti, ma potresti precisare che cosa intendi con 5 volte superato il livello 50? Vuoi dire, contatiamo quante volte l’RSI ha attraversato i 50 livelli della storia passata?

    #39249 quote
    pignolaus
    Participant
    Average

    Ciao Nicolas, scusa ma ho scritto male o non mi sono spiegato. Mi interessa semplicemente costruire uno screener che trovi su grafici settimanali il punto in cui RSI crossa sopra il valore 50.

    Il codice che utilizzo è il seguente, ma la ricerca non identifica i titoli in quella situazione (RSI cross over 50);

    ///CCI RSI rialzista
    indicator1 = rsi[14]
    c1 = indicator1[1] < 50
    c2 = indicator1 > 50
    test = c1 AND c2
    SCREENER [test]

    Forse il cattivo risultato è dovuto al fatto che questo screener su base settimanale deve essere eseguito solo il venerdì? (cioè con tutte le 5 candele giornaliere dell’ultima settimana chiusa).

    Spero di essermi spiegato, comunque allego una immagine dove evidenzio la condizione che vorrei identificare con lo screener (nell’esempio i titolo RACE che in data 11/07/2016 ha fatto segnare il cross di RSI14 rispetto alla linea di valore 50.

    Grazie e buon trading.

    Race-weekly.pdf
    #42349 quote
    gabri
    Participant
    Master

    Pignolaus,

    prova questo:

    timeframe (weekly)
    a=rsi[5](close)
    if a crosses over 50 then
    c1=1
    else
    c1=0
    endif
    
    SCREENER (c1 as "RSI5 cross")
    Nicolas thanked this post
    #42379 quote
    Nicolas
    Keymaster
    Master

    Grazie mille Gabri, ma la condizione di screener deve sempre essere sotto parentesi quadre come questo:

    timeframe (weekly)
    a=rsi[5](close)
    if a crosses over 50 then
    c1=1
    else
    c1=0
    endif
    
    SCREENER [c1] (c1 as "RSI5 cross")
Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.

Screener wekly


ProScreener: Scansione Mercati & Screener

New Reply
Author
author-avatar
pignolaus @pignolaus Participant
Summary

This topic contains 4 replies,
has 3 voices, and was last updated by Nicolas
8 years, 7 months ago.

Topic Details
Forum: ProScreener: Scansione Mercati & Screener
Language: Italian
Started: 06/27/2017
Status: Active
Attachments: 1 files
Logo Logo
Loading...