Screener TDI

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #55895 quote
    finplus
    Participant
    Master

    Bonsoir,

    voici le code du TDI que j’utilise récupéré sur le site “trading attitude”. J’aurai souhaité avoir un screener qui me renvoie le franchissement à la hausse ou à la baisse de la Middleband par la Signalline (ligne rouge sur le graphique). Le screener que j’ai écrit me renvoie des informations erronées.

    Merci d’avance pour votre aide.

     

    // Standard Setting
    
    // Priceline isSMA(2) of RSI(13)
    
    // Signalline is SMA(7) of RSI(13)
    
    // Midband is SMA(35) of RSI(13)
    
    // BolingerBand around SMA(35) using 1.62 StdDev
    
    //Midline = 50
    
    //SignallineUp = 70
    
    //SignallineDown = 30
    
    q = 13
    r = 2
    
    t = 35
    u = 1.62
    
    RSIasPrice = RSI[q](customclose)
    
    // AverageRSI-Linie als Priceline, deswegen kurzer = 2
    
    Priceline = Average[r](RSIasPrice)
    
    // Signalline = Average 7 vom RSI
    
    Signalline = Average(RSIasPrice)  // should be Signalline = Average[7](RSIasPrice)
    StdDevRSI = STD[t](RSIasPrice)
    MiddleBand = Average[t]((RSIasPrice))
    UpperBand = MiddleBand + u*StdDevRSI
    LowerBand = MiddleBand - u*StdDevRSI
    Return Priceline AS "Priceline", UpperBand AS "UpperBand", LowerBand AS "LowerBand", MiddleBand AS "MiddleBand = Market Base Line", Signalline AS "Signalline", 68 COLOURED(250,100,100)AS "68", 32 AS "32"
Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.

Screener TDI


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
finplus @finplus Participant
Summary

This topic contains 1 voice and has 0 replies.

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