Ema21 SMA200 e Stocastico

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #217466 quote
    sivispacem
    Participant
    Junior

    Ciao a tutti.

    Avrei bisogno la creazione di un indicatore con questi parametri,

     

    per il LONG

    –    EMA21 > SMA200

    –    20 < Stocastico (10;6;3) < 80 e in salita

    –    Prezzo (close) > EMA21

     

    per lo SHORT

    –    EMA21 < SMA200

    –    20 < Stocastico (10;6;3) < 80 e in discesa

    –    Prezzo (close) < EMA21

     

    Grazie sempre per il supporto.

    Fausto

    #217483 quote
    JS
    Participant
    Veteran

    Ciao,

    Prova questo…

     
    EMA21=ExponentialAverage[21](close)
    SMA200=Average[200](Close)
    Stochastic1063=Stochasticd[10,6,3](close)
    
    C1=EMA21>SMA200
    C2=Stochastic1063>20 and Stochastic1063<80
    C3=Stochastic1063>Stochastic1063[1]
    C4=Close>EMA21
    
    Long=C1 and C2 and C3 and C4
    
    C5=EMA21<SMA200
    C6=Stochastic1063>20 and Stochastic1063<80
    C7=Stochastic1063<Stochastic1063[1]
    C8=Close<EMA21
    
    Short=C5 and C6 and C7 and C8
    
    Return Long as "Long", Short as "Short"
    #217493 quote
    sivispacem
    Participant
    Junior
    Graie mille. Funzionea perfettamente. Grazie ancora, Fausto
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

Ema21 SMA200 e Stocastico


ProBuilder: Indicatori & Strumenti Personalizzati

New Reply
Author
author-avatar
sivispacem @sivispacem Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by sivispacem
2 years, 8 months ago.

Topic Details
Forum: ProBuilder: Indicatori & Strumenti Personalizzati
Language: Italian
Started: 07/09/2023
Status: Active
Attachments: No files
Logo Logo
Loading...