screener heikin ashi

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #218903 quote
    nooby
    Participant
    New

    Bonjour, besoin de votre aide pour un screener avec ces conditions :

    – Bougies Heikin Ashi

    – Open de bougie Heikin Ashi sous MM7 OU Tenkan (une des 2 options)

    – Close au-dessus de MM7 ascendante et Tenkan

    Trié selon la distance entre la close de la bougie (heikin Ashi toujours) et la Tenkan (du plus proche au plus éloigné de la Tenkan)

    Merci d’avance pour votre aide 🙂

    #219735 quote
    nooby
    Participant
    New

    en tant que nooby, j’ai créé ceci :

     

    haOpen = (haOpen[1] + haClose[1]) / 2

    haClose = (open + close + high + low) / 4

    Ma7 = average[7]

    Tenkan = (highest[9](high)+lowest[9](low)) / 2

    c1 = haOpen < (Tenkan or Ma7)

    c2 = haClose crosses over (Tenkan and Ma7)

    c3 = Ma7(1) < Ma7

    screener[c1 and c2 and c3]

     

    Qu’en pensez-vous par rapport à mes conditions du premier message? Que dois-je modifier? comment intégrer au mieux les conditions manquantes?

    Merci

    #219758 quote
    JC_Bywan
    Moderator
    Master

    Bonsoir, à tester:

    if barindex>=1 then
    haOpen = (haOpen[1] + haClose[1]) / 2
    endif
    haClose = totalprice
    Ma7 = average[7](close)
    maTenkan = TenkanSen[9,26,52]
    c1 = haOpen<Ma7 OR haOpen<maTenkan
    c2 = haClose>Ma7 AND haClose>maTenkan AND Ma7>Ma7[1]
    distance= haClose-maTenkan
    
    screener[c1 and c2](distance as "close-tenkan")
    nooby thanked this post
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

screener heikin ashi


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
nooby @nooby Participant
Summary

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

Topic Details
Forum: ProScreener : Scanners de Marché & Détection
Language: French
Started: 08/10/2023
Status: Active
Attachments: No files
Logo Logo
Loading...