regroupement MM 20/50 ETC..

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

    Bonjour à tous,

    je cherche un screeners (j’espère être clair dans ma demande)

    screener qui détecte le rapprochement de MM 20/50/150 ET 200
    avec la remonté du RSI et croisement MACD sur dépassement de la ligne de 0
    avec des action de 50€ maximum (afin d’évité d’avoir 50 actions à 100 ou 800€)

    Merci de votre aident

    #161455 quote
    Nicolas
    Keymaster
    Legend

    Pour la remontée du RSI, j’ai simplement codé une valeur actuelle supérieure à celle précédente, il faudrait être plus précis svp.

    Pour le rapprochement des MA, il se paramètre en pourcentage:

    //reserrement de MA en pourcentage
    percentage = 0.25
    a = average[20]
    b = average[50]
    c = average[200]
    upper = max(max(a,b),c)
    lower = min(min(a,b),c)
    d = ((upper - lower) / close) *100
    e = d <= percentage
    
    c1 = rsi[14]>rsi[14][1]
    c2 = MACD[12,26,9](close) crosses over 0
    c3 = close<=50
    
    SCREENER[e and c1 and c2 and c3]
    #161473 quote
    migmig21
    Participant
    New

    Bonjour,

    Je te remercie pour ton aide

    Bonne journée

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

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

regroupement MM 20/50 ETC..


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
migmig21 @migmig21 Participant
Summary

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

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