Screener Ritracciamento da Massimo 52 settimane

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #258407 quote
    Andrea85
    Participant
    New

    Buonasera,


    chiedo un aiuto per codificare uno screener che trovi tutti i titoli che hanno chiuso con:


    chiusura > ema 10

    ema 10 > ema 20

    ema 20 > sma 50


    Distanza massima di ritracciamento del 30% dal massimo a 52 settimane.


    Grazie!


    #258414 quote
    Iván González
    Moderator
    Master

    ecco

    ema10=average[10,1](close)
    ema20=average[20,1](close)
    sma50=average[50,0](close)
    //chiusura > ema 10
    c1=close>ema10
    //ema 10 > ema 20
    c2=ema10>ema20
    //ema 20 > sma 50
    c3=ema20>sma50
    //Distanza massima di ritracciamento del 30% dal massimo a 52 settimane.
    max52=highest[52](high)
    c4=close>max52*0.70
    
    screener[c1 and c2 and c3 and c4]
    
    Andrea85 and robertogozzi thanked this post
    #258419 quote
    Andrea85
    Participant
    New

    Grazie mille!

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

Screener Ritracciamento da Massimo 52 settimane


Supporto Piattaforma: Grafici, Dati e Broker

New Reply
Author
author-avatar
Andrea85 @andrea85 Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by Andrea85
3 days, 7 hours ago.

Topic Details
Forum: Supporto Piattaforma: Grafici, Dati e Broker
Language: Italian
Started: 02/22/2026
Status: Active
Attachments: No files
Logo Logo
Loading...