TradingView
InvestitoreComune
٢٧ أيلول سبتمبر ٢٠١٦ ١٠:٤٥

RSI Divergence 

Euro Fx/U.S. DollarFXCM

الوصف

RSI DIVERGENCE is a difference between a fast and a slow RSI. Default values are 5 for the fast one and 14 for the slow one.
You can use this indicator in 2 different ways:
  • normal RSI: check double or triple top/bottom on a chart meanwhile RSI is descending/ascending (check the example on chart)
  • signal line: when RSI Divergence cross zero line from bottom to top you get a buy signal (the line become green), vice versa when the RSI Divergence cross zero line in the opposite way you get a sell signal (the line become red)
التعليقات
Marceeelll
Looks really great. Thanks for your contribution!
CryptoPv
@Shizaru thanks for the nice code. Looks really great.
Is it possible that the script also draws the dotted line as in your example on two or three top / bottom ?

jregan11
This looks amazing. I'm just wondering how to set the alert so that it triggers when the signal line changes colors (red to green/green to red). Does anyone have any experience setting this? Thanks!
AgeM
@jregan11, Did you solve this?
AgeM
@AgeM, @Shizaru
DreamsDefined
@AgeM, @jregan11 If you need a hand with this let me know. I'm happy to code something. Just PM me.
lavventura
@DreamsDefined, I know its a pretty old comment but did you able to code to send an alert?
self2point0
@jregan11, add this to the bottom of the script

divlong = divergence[1] < 0 and divergence >=0
divshort = divergence[1] > 0 and divergence <=0

alertcondition(divlong, title='Div Long', message='Div Long')
alertcondition(divshort, title='Div Short', message='Div Short')

data1 = divlong
plotshape(data1, style=shape.triangleup,location=location.bottom, color=green , title="DivUp")

data2 = divshort
plotshape(data2, style=shape.triangledown, location=location.top, color=red,title="DivDown")
Minimal_Est
@self2point0, hi does it actually work ?
المزيد