NEW MIN MAX INTRADAY SCREENER

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #255261 quote
    Radetzky
    Participant
    Senior

    Buongiormo  e grazie per la  risposta:

    ho impegato tempo ( non so programmare )… ma non sono  riuscito  a trovare  un semplice  SCREENER

    che mi  indichi  quando  un titolo /valore  sta  sviluppando  nuovi  Max in intraday ( intendo  nuovi  massimi  succesivi  maggiori nella  stessa sessione )

    ( o  nuovi  minimi in  intraday )

    su alcune  piattaforme   è  di  default …… su  prorealtime  si  può fare  qualcosa ???

    grazie

    #255262 quote
    Iván González
    Moderator
    Master

    Ecco un esempio.

    // --- ProScreener: New Intraday High or Low ---
    
    // Initialize variables once
    ONCE sessionHigh = 0
    ONCE sessionLow = 0
    ONCE signalHigh = 0
    ONCE signalLow = 0
    
    // Reset extremes at the first bar of the day (index 0)
    IF IntradayBarIndex = 0 THEN
       sessionHigh = high
       sessionLow = low
       signalHigh = 0
       signalLow = 0
    ELSE
       // Check for a new high compared to the high of the previous bars of the same day
       IF high > sessionHigh[1] THEN
          signalHigh = 1
          sessionHigh = high
       ELSE
          signalHigh = 0
          sessionHigh = sessionHigh[1]
       ENDIF 
       // Check for a new low compared to the low of the previous bars of the same day
       IF low < sessionLow[1] THEN
          signalLow = 1
          sessionLow = low
       ELSE
          signalLow = 0
          sessionLow = sessionLow[1]
       ENDIF
    ENDIF
    
    // Sorting criteria: 1 for New High, -1 for New Low
    IF signalHigh THEN
       resultType = 1
    ELSIF signalLow THEN
       resultType = -1
    ELSE
       resultType = 0
    ENDIF
    
    SCREENER[resultType <> 0] (resultType AS "1:High / -1:Low")
    robertogozzi thanked this post
    #255263 quote
    Radetzky
    Participant
    Senior

    Grazie  per  la celere  risposta:

    gira e sembra  essere  un  buon esempio , ci lavoro  qualche  giorno  e poi posto

    le impressioni .

    Nella preoccupazione  di scrivere  correttamente  mi son dimenticato  degli  auguri di  buona  anno !!!

    a presto  e  grazie  ancora

    #255267 quote
    Radetzky
    Participant
    Senior

    Ho visto solo adesso  che  ho postato  la  domanda  nella  sezione  sbaglata

    ..si può spostre  il tutto  in  ” aiuto  pro-screener ” di  modo che  sia  facilmente  reperibile  se  qualcuno lo cerca ???  grazie

    #255274 quote
    Iván González
    Moderator
    Master

    Fatto, grazie per avermelo fatto sapere.

    #255306 quote
    Radetzky
    Participant
    Senior

    Buongiorno

    sembra  girare bene , settato  su H1 ( 1 ora )    lo seguo  ,  poi proverò a  scndere al 15 min per  vedere cosa restituisce……

     

    ùgrazie

    Immagine-2026-01-15-091316.jpeg Immagine-2026-01-15-091316.jpeg
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.

NEW MIN MAX INTRADAY SCREENER


ProScreener: Scansione Mercati & Screener

New Reply
Author
author-avatar
Radetzky @radetzky Participant
Summary

This topic contains 5 replies,
has 2 voices, and was last updated by Radetzky
1 month, 2 weeks ago.

Topic Details
Forum: ProScreener: Scansione Mercati & Screener
Language: Italian
Started: 01/13/2026
Status: Active
Attachments: 1 files
Logo Logo
Loading...