creation screener exaconvergence

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #16781 quote
    gregoire
    Participant
    Senior

    bonjour nicolas

    j aimerais savoir s il était possible de crée un screener ou indicateur qui me permettrai de détecter la tendance haussière ou baissière sur  5 ou 6 unité de temps en exaconvergence, je vois déjà que je vais être limité sur par le screener qui ne débute qu en mensuel.

    je préféré demander avant de vouloir le réalisé , cela n est peu être pas encore pris en compte.

    merci

    #16783 quote
    Nicolas
    Keymaster
    Master
    ProScreener support le multi timeframe, tu pourras donc tester toutes les conditions que tu souhaites dans toutes les unités de temps disponible du module, soit de 1 minute à hebdomadaire.
    #16784 quote
    gregoire
    Participant
    Senior

    oui mais si je veux faire un screener qui scan de l hebdo du mensuel et 15 mn en même temps on peu le faire ?

    c est ça de l exaconvergence ton actif est en tendance haussiere sur les 3 times frimes et c est sa que je veux detecté mais sais pas trop par ou commencé.

    #16830 quote
    Nicolas
    Keymaster
    Master
    Oui tu peux le faire ! Il y a un exemple dans la documentation prorealtime en ligne du site: TIMEFRAME
    #16985 quote
    gregoire
    Participant
    Senior

    merci nicolas

    petit renseignement le screener  bien est lu de haut en bas pour l ordre j ai mis hebdo , journalier et 15 mn mais pour le 15 minutes j ai essayer de l écrire avec toute les configuration que je connais on me demande de rectifier et n est pas pris en compte, peut tu me donner l astuce ?

    sinon je te remercie tu m a fait gagné un temps précieux.

    #16998 quote
    Nicolas
    Keymaster
    Master
    Sans avoir vu ton code, difficile de te renseigner. Possèdes-tu un compte IG/PRT-CFD ? Un petit exemple de screener multi timeframe comprenant un test sur une unité de temps 15 minutes sous PRT-CFD:
    timeframe (daily)
    c1 = variation>1 or variation<-1
    
    timeframe (15 minutes)
    ema20 = exponentialaverage[20]
    ema50 = exponentialaverage[50]
    c2 = ema20 crosses over ema50 or ema20 crosses under ema50
    
    screener[c1 and c2]
    #60911 quote
    gregoire
    Participant
    Senior
    bonjour nicolas j ai trouvé ce code qui pourait bien aller avec ce que je recherche
    ////ONCE DAY////
    once currenthighday=high
    once currentlowday=low
    once previoushighday=undefined
    once previouslowday=undefined
     
    ////ONCE WEEK////
    once currenthighweek=high
    once currentlowweek=low
    once previoushighweek=undefined
    once previouslowweek=undefined
     
    ////ONCE MONTH////
    once currenthighmonth=high
    once currentlowmonth=low
    once previoushighmonth=undefined
    once previouslowmonth=undefined
     
    ////ONCE TRIMESTRIAL////
    trimH=max(trimH,high)
    trimL=min(trimL,low)
     
    ////ONCE ANNUEL////
    once currenthighannuel=high
    once currentlowannuel=low
    once previoushighannuel=undefined
    once previouslowannuel=undefined
     
    ////OPEN DAY////
    if openday <> openday[1] then
    previoushighday=currenthighday
    previouslowday=currentlowday
    currenthighday=high
    currentlowday=low
    else
    currenthighday=max(high,currenthighday)
    currentlowday=min(low,currentlowday)
    endif
     
    ////OPEN WEEK////
    if DayOfWeek<DayOfWeek[1] then
    previoushighweek=currenthighweek
    previouslowweek=currentlowweek
    currenthighweek=high
    currentlowweek=low
    else
    currenthighweek=max(high,currenthighweek)
    currentlowweek=min(low,currentlowweek)
    endif
     
    ////OPEN MONTH////
    if openmonth<>openmonth[1]then
    previoushighmonth=currenthighmonth
    previouslowmonth=currentlowmonth
    currenthighmonth=high
    currentlowmonth=low
    else
    currenthighmonth=max(high,currenthighmonth)
    currentlowmonth=min(low,currentlowmonth)
    endif
     
    ////OPEN  TRIMESTRIAL////
    If openMonth<>openMonth[1] then
    if openmonth=4 or openmonth=7 or openmonth=10 or openmonth=1 then
    trimestrialH=trimH
    trimestrialL=trimL
    trimL=close*100
    trimH=0
    endif
     
    endif
     
    ////OPEN ANNUEL////
    if openyear <> openyear[1] then
    previoushighannuel=currenthighannuel
    previouslowannuel=currentlowannuel
    currenthighannuel=high
    currentlowannuel=low
    else
    currenthighannuel=max(high,currenthighannuel)
    currentlowannuel=min(low,currentlowannuel)
    endif
     
    return previoushighday coloured(46, 134, 193) as "Précédent haut journalier", previouslowday coloured(46, 134, 193) as "Précédent bas journalier", previ
    est il possible d avoir une lettre ou un chiffre qui correspond a chaque UT par ex: A= achat sur l annuel, le trim,l hebdo le mensuel et daily cela donerais :AAAAA. R pour le range et V pour la vente, j avais trouvé un autre code dans le meme genre avec des chiffre je le posterais en suivant si je le retrouve. merci nicolas
    #60927 quote
    Nicolas
    Keymaster
    Master
    Cet indicateur renvoi les plus hauts/bas de plusieurs horizons de temps calendaires, ça j’ai compris. Par contre je n’ai pas compris ce que tu cherches à trouver par ce biais avec un screener exactement ? Merci de définir les conditions.
    #60932 quote
    gregoire
    Participant
    Senior
    bonjour nicolas oui pardon je suis aller un peu vite,donc tout simplement la cassure du précédent plus haut ou plus bas sur chaque ut. peut etre faudra il rajouté un filtre sur les volume si trop de résultat je ne sais pas encore ce que cela va donné ! merci nicolas.
    #71164 quote
    Garuda781
    Participant
    Senior
    Bonjour, je suis très intéressé par le code publié, mais je crois qu’il manque les dernières lignes. Pourriez-vous le republier en entier SVP? Merci
Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.

creation screener exaconvergence


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
gregoire @gregus Participant
Summary

This topic contains 9 replies,
has 3 voices, and was last updated by Garuda781
7 years, 9 months ago.

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