You Can Use This Script in Tradingview Site
You Can Use This Script in Tradingview Site
//CCI-8 on 5 minutes
//CCI-34 on 5 minutes
//3) EMA
//7) Highest High and Lowest Low Strength Candles detected with CCI > 100 and CCI< -100 and
indicated bye CCI_BO_B and CCI_BO_S
study("NimblrTA", shorttitle="NimblrTA",overlay=true)
cci34_5m = cci(src,len2)
cci8_5m = security(ticker,"5",cci(src,len))
cci34_30m = security(ticker,"30",cci(src,len2))
mode = input(title='Mode (1:timeframe, 2:session):', type=integer, minval=1, maxval=2, defval=1)
// Input variable for maximum candlestick body size in relation to high low candlestick range
// If you want to draw a shape in the middle of candlestick body then this variable is needed
//Sell condition
//Plot 5 21 55 EMA
ema5 = ema(close, 5)
//Panchang Time
premarket = orange
regular = #aeb6bf
regularslot2 = #5f6a6a
regularslot3 = #aeb6bf
regularslot4 = #5f6a6a
regularslot5 = #aeb6bf
postmarket = #aeb6bf
notrading = na
bgcolor(sessioncolor, transp=90)
//barcount=barssince(timeinrange("5", "0915-0930"))
//plot(barcount,title="Barcount")
HighestHigh=newHigh*BOCandle_B
plot(HighestHigh,title="HighestHigh")
//Sell Condition
LowestLow=newLow*BOCandle_S
plot(LowestLow,title="LowestLow")
plot(CCI_BO_B,title="CCI_BO_B")
//Sell Condition
plot(CCI_BO_S,title="CCI_BO_S")
startCalc = start
incrementCalc = increment
maximumCalc = maximum