Two EMA RSI Signal

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #122003 quote
    stephane2.0
    Participant
    Junior

    Up
    RSI > 50
    EMA1 > EMA2

    Down
    RSI < 50
    EMA1 < EMA2

    a= RSI[14](close)
    b= ExponentialAverage[20](close)
    c= ExponentialAverage[50](close)
    d= averagetruerange[10](close)
    
    
    if a>50 and b crosses over c then
    DRAWARROWUP(barindex[1],low[1]-d/2)coloured(10,255,10)
    
    elsif a<50 and b crosses under c then
    DRAWARROWDOWN(barindex[1],high[1]+d/2)coloured(255,10,10)
    endif
    
    return

     

    Nicolas thanked this post
Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.

Two EMA RSI Signal


ProBuilder : Indicateurs & Outils Personnalisés

New Reply
Author
Summary

This topic contains 1 voice and has 0 replies.

Topic Details
Forum: ProBuilder : Indicateurs & Outils Personnalisés
Language: French
Started: 03/13/2020
Status: Active
Attachments: No files
Logo Logo
Loading...