Aide programmation d'un proscreener

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #28386 quote
    henri95
    Participant
    Average

    Bonjour,
    N’ayant aucune connaissance en programmation, j’aimerai avoir un proscreener qui me détecte à la fois:

    1- Achat sur Heikin Ashi

    2- Volume supérieur à 999

    3- MM arithmétique 150 en hausse

    Merci pour l’aide apportée.

    Le code HA est le suivant:

     

    xClose = (open + high +low + close)/4
    IF Barindex>0 THEN
    xopen = (xopen[1] + xclose[1])/2
    ENDIF
    IF xopen[1] > xclose[1] AND xopen<xclose THEN
    achat=1
    ELSE
    achat=0
    ENDIF
    
    SCREENER [achat] (VARIATION AS "VAR")
    
    #28389 quote
    Nicolas
    Keymaster
    Master

    Je n’ai pas vérifié le code du screener proposé, mais voici la version modifiée comprenant les autres conditions:

    xClose = (open + high +low + close)/4
    IF Barindex>0 THEN
    xopen = (xopen[1] + xclose[1])/2
    ENDIF
    IF xopen[1] > xclose[1] AND xopen<xclose THEN
    achat=1
    ELSE
    achat=0
    ENDIF
    
    mm=average[150]
    
    condition = achat and volume>999 and mm>mm[1] 
    
    SCREENER [condition] (VARIATION AS "VAR")

    Concernant la moyenne mobile ‘en hausse’, je n’ai simplement fait que comparé sa valeur si supérieur à celle de la période précédente, ce n’est peut être pas suffisant vis à vis de votre demande ?

    #28392 quote
    henri95
    Participant
    Average

    Merci c bon ca marche!

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

Aide programmation d'un proscreener


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
henri95 @henri95 Participant
Summary

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

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