Island reversal pattern

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #185102 quote
    Steoxx
    Participant
    New

    Buongiorno a tutti e grazie in anticipo a chi vorrà aiutarmi,

    sono nuovo del forum e sto cercando uno screener che mi cerchi quelli che in gergo vengono chiamati “Island cluster reversal”, un pattern che si forma quando, dopo la formazione del primo gap (che solitamente è un exhaustion gap) i prezzi si muovono per qualche seduta in laterale prima della formazione di un ulteriore gap di verso opposto rispetto all’exhaustion gap.

    ho cercato su diversi siti ma non ho trovato nulla del genere, allego la foto dei gap che sarebbero da ricercare.

    Grazie ancora

    Island-cluster-reversal.jpg Island-cluster-reversal.jpg
    #185301 quote
    robertogozzi
    Moderator
    Master

    Ho fatto qualche ricerca ed ho visto che è un pattern che si verifica piuttosto raramente.

    Non è facilissimo da codificare e ci saranno vari parametri che dovrai settare, ma cercherò di fartelo appena possibile.

    Lo usi sul time frame Giornaliero?

    #185344 quote
    Steoxx
    Participant
    New

    Ciao Roberto, grazie per la disponibilità e il supporto,

    ti confermo che lo vorrei usare sul giornaliero, ho letto anch’io che è un pattern che si verifica molto raramente ma che allo stesso tempo è considerato molto valido per segnalare un cambio di direzione.

    Grazie ancora e buon lavoro.

    Stefano

    #185544 quote
    robertogozzi
    Moderator
    Master

    Scusami per il ritardo, ormai lo farò Lunedì.

    Buon fine settimana 🙂

    #186033 quote
    robertogozzi
    Moderator
    Master

    Eccolo, prova se fa esattamente quello che è previsto (mi sembra di si):

    DEFPARAM CumulateOrders = False
    ONCE UPflag   = 0
    ONCE DOWNflag = 0
    ONCE GAPstart = 0
    ONCE GAPend   = 0
    Bullish       = close > open
    Bearsih       = close < open
    BullGAP       = open > high[1]
    BearGAP       = open < low[1]
    // rilevare il GAP principale
    IF BullGAP THEN
       IF DOWNflag = 0 THEN
          GAPstart = high[1]
          GAPend   = open
          UPflag   = 1
       ENDIF
    ELSIF BearGAP THEN
       IF UPflag = 0 THEN
          GAPstart = low[1]
          GAPend   = open
          DOWNflag = 1
       ENDIF
    ENDIF
    // annullare il Pattern se il GAP viene assorbito
    IF UPflag THEN
       GAPend = min(GAPend,low)
       IF GAPend <= GAPstart THEN
         UPflag = 0
       ENDIF
    ELSIF DOWNflag THEN
       GAPend = max(GAPend,high)
       IF GAPend >= GAPstart THEN
          DOWNflag = 0
       ENDIF
    ENDIF
    // Entrare a mercato alla verifica di un GAP inverso
    IF UPflag THEN
       IF BearGAP THEN
          SELLSHORT 1 CONTRACT AT Market
       ENDIF
    ENDIF
    IF DOWNflag THEN
       IF BullGAP THEN
          BUY 1 CONTRACT AT Market
       ENDIF
    ENDIF
    SET TARGET pPROFIT 450
    SET STOP   pLOSS   300
    Il-Mio-Sistema-4.itf
    #186215 quote
    Steoxx
    Participant
    New

    Ciao Roberto e grazie,

    come screener mi da errore, sbaglio qualcosa? Grazie per il supporto.

    Stefano

    #186218 quote
    robertogozzi
    Moderator
    Master

    Scusami, ho sbagliato ed ho fatto una strategia.
    Rimedio subito, ecco lo screener:

    IF BarIndex = 0 THEN
    UPflag   = 0
    DOWNflag = 0
    GAPstart = 0
    GAPend   = 0
    ENDIF
    Segnale     = 0
    BullGAP     = open > high[1]
    BearGAP     = open < low[1]
    // rilevare il GAP principale
    IF BullGAP THEN
    IF DOWNflag = 0 THEN
    GAPstart = high[1]
    GAPend   = open
    UPflag   = 1
    ENDIF
    ELSIF BearGAP THEN
    IF UPflag = 0 THEN
    GAPstart = low[1]
    GAPend   = open
    DOWNflag = 1
    ENDIF
    ENDIF
    // annullare il Pattern se il GAP viene assorbito
    IF UPflag THEN
    GAPend = min(GAPend,low)
    IF GAPend <= GAPstart THEN
    UPflag = 0
    ENDIF
    ELSIF DOWNflag THEN
    GAPend = max(GAPend,high)
    IF GAPend >= GAPstart THEN
    DOWNflag = 0
    ENDIF
    ENDIF
    // Entrare a mercato alla verifica di un GAP inverso
    IF UPflag THEN
    IF BearGAP THEN
    Segnale = 2
    ENDIF
    ENDIF
    IF DOWNflag THEN
    IF BullGAP THEN
    Segnale = 1
    ENDIF
    ENDIF
    SCREENER[Segnale](Segnale AS "1=↑, 2=↓")
    Il-Mio-ProScreener4.itf
    #186485 quote
    Steoxx
    Participant
    New

    Grazie!

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

Island reversal pattern


ProScreener: Scansione Mercati & Screener

New Reply
Author
author-avatar
Steoxx @steoxx Participant
Summary

This topic contains 7 replies,
has 2 voices, and was last updated by Steoxx
4 years, 1 month ago.

Topic Details
Forum: ProScreener: Scansione Mercati & Screener
Language: Italian
Started: 01/11/2022
Status: Active
Attachments: 3 files
Logo Logo
Loading...