screener stocastico e adx

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #212463 quote
    Fabry11
    Participant
    New

    Salve, chiedo supporto per creare uno screener sia al rialzo che al ribasso con due indicatori lo stocastico e adx

    1- screener al rialzo lo stocastico deve essere inferiore a 25 e ADX(14) deve essere maggiore di 33

    2- screener al ribasso lo stocastico deve essere maggiore di 75 e ADX(14) deve essere maggiore di 33

    #213312 quote
    robertogozzi
    Moderator
    Master

    Eccolo, con 1 indica i titoli rialzisti, con 2 quelli ribassisti:

    StoK   = Stochastic[10,3](close)             //K line
    //StoD = Average[6](Stochastic[10,3](close)) //D line
    L1     = StoK < 25
    S1     = StoK > 75
    myADX  = ADX[14]
    L2     = myADX > 33
    S2     = L2
    CondL  = L1 AND L2
    CondS  = S1 AND S2
    Segnale= 0
    IF CondL THEN
       Segnale = 1
    ELSIF CondS THEN
       Segnale = 2
    ENDIF
    SCREENER[Segnale](Segnale AS "1=↑,2=↓")
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

screener stocastico e adx


ProScreener: Scansione Mercati & Screener

New Reply
Author
author-avatar
Fabry11 @hit-man Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by robertogozzi
2 years, 11 months ago.

Topic Details
Forum: ProScreener: Scansione Mercati & Screener
Language: Italian
Started: 03/29/2023
Status: Active
Attachments: No files
Logo Logo
Loading...