fractal chaos band

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #156390 quote
    emanuele81
    Participant
    Senior

    Buongiorno, stavo cercando sulla piattaforma il fractal chaos band, non sono riuscito a trovarlo, qualcuno sa come posso inserirlo?

    #156402 quote
    robertogozzi
    Moderator
    Master

    Hai qualche riferimento alla formula per il calcolo dell’indicatore, o link ad una sua descrizione dettagliata?

    #156404 quote
    emanuele81
    Participant
    Senior

    Indicateur Fractal Bands / Conversion MQ4 vers ProRealTime

    questo è il link di un utente che lo ha preso da metatrader.Ora cerco anche altro

    #156410 quote
    robertogozzi
    Moderator
    Master

    Quelle sono Fractal Bands, io ho trovato una spiegazione più semplice (ma non è detto sia corretta), sono solo le linee tracciate tra i Frattali alti e tra i Frattali bassi.

    Vedi se è questo:

    // FCB - Fractal Chaos Bands
    //
    ONCE HIfractal = high
    ONCE LOfractal = low
    HIfractal = high[1] > high[2] AND high[1] > high
    LOfractal = low[1]  < low[2]  AND low[1]  < low
    IF HIfractal THEN
       HIfractal = high[1]
    ELSE
       HIfractal = HIfractal[1]
    ENDIF
    IF LOfractal THEN
       LOfractal = low[1]
    ELSE
       LOfractal = LOfractal[1]
    ENDIF
    RETURN HIfractal AS "Upper Fcb BAND",LOfractal AS "Lower Fcb BAND"
    FCB-Fractal-Chaos-Bands.itf FCB-Fractal-Chaos-Bands.jpg FCB-Fractal-Chaos-Bands.jpg
    #156413 quote
    emanuele81
    Participant
    Senior

    Sembra di si, ora lo provo poi ti so dire

    #156415 quote
    emanuele81
    Participant
    Senior

    Grazie mille Roberto è proprio lui.

    #156424 quote
    robertogozzi
    Moderator
    Master

    Questa versione mi sembra più corretta, nel senso che ho aggiunto i PERIODI (che ho messo per difetto =1 in modo che sia identica alla versione postata prima).

    In effetti nei siti dove ho trovato i riferimenti si parla di PERIODI, quindi devono essere modificabili dalle proprietà:

    // FCB - Fractal Chaos Bands
    //
    //ONCE Periods = 1
    ONCE HIfractal = high
    ONCE LOfractal = low
    Periods        = max(1,min(999,Periods))
    //
    HIfractal = high[1] > high[2] AND high[1] > high
    LOfractal = low[1]  < low[2]  AND low[1]  < low
    //
    IF HIfractal THEN
       HIfractal = high[1]
    ELSE
       HIfractal = HIfractal[1]
    ENDIF
    IF LOfractal THEN
       LOfractal = low[1]
    ELSE
       LOfractal = LOfractal[1]
    ENDIF
    HIvalue   = highest[Periods](HIfractal)
    LOvalue   = lowest[Periods](LOfractal)
    RETURN HIvalue AS "Upper Fcb BAND",LOvalue AS "Lower Fcb BAND"

    la foto allegata è con un settaggio a 20 periodi.

    FCB-Fractal-Chaos-Bands-1.jpg FCB-Fractal-Chaos-Bands-1.jpg FCB-Fractal-Chaos-Bands-1.itf
    #156474 quote
    emanuele81
    Participant
    Senior

    Grazie mille ancora Roberto

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

fractal chaos band


ProBuilder: Indicatori & Strumenti Personalizzati

New Reply
Author
author-avatar
emanuele81 @emanuele81 Participant
Summary

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

Topic Details
Forum: ProBuilder: Indicatori & Strumenti Personalizzati
Language: Italian
Started: 01/05/2021
Status: Active
Attachments: 4 files
Logo Logo
Loading...