détection boll et prix

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #105837 quote
    Mars2063
    Participant
    New

    Bonjour est -il possible de regrouper ces deux screener de codes pour ne faire que un screener

    voici le premier :

    indicator1 = BollingerBandWidth[20](close)
    c1 = (indicator1 <= 0.5)
    
    SCREENER[c1] ((close/DClose(1)-1)*100 AS "% Veille")

    et le deuxième :

    SCREENER[Close = 0.0020]

    L’idéal pour le deuxième serait de pouvoir aussi jouer sur un prix minimum et un prix maximum donc peut être à modifier.

    Merci d’avance

    #105858 quote
    robertogozzi
    Moderator
    Master

    Voilà

    indicator1 = BollingerBandWidth [20] (close)
    c1 = (indicator1 <= 0.5)
    c2 = Close = 0.0020
    SCREENER [c1 AND c2] ((close / Dclose (1) -1) * 100 AS "% Standby")
    #105881 quote
    Nicolas
    Keymaster
    Master

    Pour la condition des prix minimum et maximum il faudrait changer la ligne 3 (condition c2):

    indicator1 = BollingerBandWidth [20] (close)
    c1 = (indicator1 <= 0.5)
    c2 = Close >= 0.0020 and close <=0.01
    SCREENER [c1 AND c2] ((close / Dclose (1) -1) * 100 AS "% Standby")
    robertogozzi thanked this post
    #128598 quote
    Mars2063
    Participant
    New

    merci beaucoup

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

détection boll et prix


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
Mars2063 @mars2063 Participant
Summary

This topic contains 3 replies,
has 3 voices, and was last updated by Mars2063
5 years, 10 months ago.

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