You are on page 1of 1

https://www.slideshare.

net/UniqueAccent/consonant-sounds-65429588
https://www.slideshare.net/UniqueAccent/diphthongs-65430260

// This source code is subject to the terms of the Mozilla Public License 2.0 at
https://mozilla.org/MPL/2.0/
// � ManaTeluguTrader

//@version=4
study("RSI BUY SELL",overlay=true)
RSI=rsi(close,10)
SELL=RSI[1]>80 and RSI<80
BUY=RSI[1]<20 and RSI>20
plotshape(SELL, style=shape.triangledown,location=location.abovebar,
color=color.red,size=size.small)
plotshape(BUY, style=shape.triangleup,location=location.belowbar,
color=color.green,size=size.small)

You might also like