HA NORMALISES A ZERO

Viewing 6 posts - 31 through 36 (of 36 total)
  • Author
    Posts
  • #187382 quote
    KhaledKhaled
    Participant
    Veteran

    Bon, Bon… je crois que j’ai ce que tu recherches… deux screener, un pour Long et un pour Short. J’ai mis en Daily, mais tu peux changer.

     

    Short

    TIMEFRAME(DAILY)
    
    IF BarIndex<1 THEN
    xOpen     = open
    xHigh     = high
    xclose    = (open+high+low+close)/4
    ELSE
    xclose    = (open+close+low+high)/4
    xOpen     = (xOpen[1]+xclose[1])/2
    xHigh     = Max(Max(High, xOpen), xClose)
    ENDIF
    
    
    //+++++++++++++++++++++++++++++++
    test  = 0
    
    //Short
    if xclose<xopen and xhigh=xopen and close>10 then
    test = -1
    Direction=-1
    endif
    
    iRSI = round(RSI[14](close) * Direction,0)
     
    screener[test=-1](iRSI AS "RSI")

     

     

    Long

    TIMEFRAME(DAILY)
    
    
    IF BarIndex<1 THEN
    xOpen     = open
    xLow      = low
    xclose    = (open+high+low+close)/4
    ELSE
    xclose    = (open+close+low+high)/4
    xOpen     = (xOpen[1]+xclose[1])/2
    xLow      = Min(Min(low, xOpen), xClose)
    ENDIF
    
    
    
    //+++++++++++++++++++++++++++++++
    test  = 0
    
    //Long
    if xclose>xopen and xlow=xopen and close>10 then
    test = 1
    Direction=+1
    endif
    iRSI = round(RSI[14](close) * Direction,0)
     
    screener[test=1](iRSI AS "RSI")
    Capture-décran-2022-02-02-à-18.31.27.png Capture-décran-2022-02-02-à-18.31.27.png Capture-décran-2022-02-02-à-18.30.55.png Capture-décran-2022-02-02-à-18.30.55.png Capture-décran-2022-02-02-à-18.31.59.png Capture-décran-2022-02-02-à-18.31.59.png Capture-décran-2022-02-02-à-18.33.31.png Capture-décran-2022-02-02-à-18.33.31.png
    #187391 quote
    supertitisupertiti
    Participant
    Master

    Bon ,bon mais pas tant que ça désolé, j’ai mis les deux codes sur le SRD France et on est toujours pas bon , les signaux sont bons mais ne sont

    pas seulement sur le dernière cotation (ici en daily)

    affaire à suivre donc …

    #187392 quote
    supertitisupertiti
    Participant
    Master

    ATOS : vrais rumeurs ou faux départ !

    le signal était là hier

    ATOS-02022022.jpg ATOS-02022022.jpg
    #187394 quote
    KhaledKhaled
    Participant
    Veteran

    LoL LoL LoL… ça t’aurais dérangé de dire merci d’abord…

    Le screener marche bien. Tu parles de changement de polarité?

    #187398 quote
    supertitisupertiti
    Participant
    Master

    Ne serais-je pas clair ?!

    Le retour des screeners est bon : ça c’est une chose  (on a bien le point positif ou négatif)

    Ce que l’on a pas : c’est le point sur le dernier chandelier et uniquement sur le dernier chandelier et pas depuis 2,3,4,5,10 jours.

    Va t’on y arriver ?

    merci beaucoup,muchas gracias,choukrane bezef,thank you very much …

    #188003 quote
    supertitisupertiti
    Participant
    Master

    Bonjour à tous,

    Personne pour aider à résoudre le problème ?  le point sur le dernier chandelier et uniquement sur le dernier chandelier

    Khaled a calé ….ou pas ? Nicolas ne pourrait-il venir à la rescousse …

    Bons trades.

Viewing 6 posts - 31 through 36 (of 36 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

HA NORMALISES A ZERO


ProBuilder : Indicateurs & Outils Personnalisés

New Reply
Author
author-avatar
supertiti @supertiti Participant
Summary

This topic contains 35 replies,
has 2 voices, and was last updated by supertitisupertiti
4 years, 7 months ago.

Topic Details
Forum: ProBuilder : Indicateurs & Outils Personnalisés
Language: French
Started: 01/26/2022
Status: Active
Attachments: 16 files
ProRealCode ProRealCode
Loading...