author

Volatility Support & Resistance Script

Volatility Support & Resistance Script     Copy and Paste the below scripts in tradingview pine editor and click on add to the chart.     Support: //@version=4 study(“Volatility Support by Koli”, overlay=true) closebarcrnt = close crntgreenbar = close > open prevgreenbar= close[1] > open[1] prevred2= close[2] < open[2] prevred3 = close[3] < open[3] volatilitysupport […]

Three Candle Strategy Script

Momentum Strategy Script   Copy and Paste the below scripts in tradingview pine editor and click on add to the chart.   //@version=4 study(“Momentum Strategy-Sandesh Koli”, overlay=true) fourth= close < open third= close[1] > open[1] second= close[2] > open[2] first= close[3] > open[3] buy= fourth and third and second and first plotshape(buy, style=shape.triangleup, location=location.belowbar, color=color.green, […]

Storm Strategy

Storm Strategy 10-Aug-2022 All are successful trades. Most of them are re-entries after hitting SL. We can take multiple entries in the same stock if SL hits. The arrow shows entry candles where SL hits.     10-Aug-2022 All are successful trades. Most of them are re-entries after hitting SL. We can take multiple entries […]

GTS APK Download

Click the below link to download the latest GTS Apk. New APK released: 01 May 2023 What is new in this update? New Strategies Offer related info Bugs fixed Steps to install APK. Click here to Download the Latest GTS APK Download APK from the above link. Do not worry, it is safe to download. […]

NR Inside bar script tradingview

NR Inside bar script Tradingview     //@version=4 study(“NR Inside”, overlay=true)   fourth= high – low third= high[1] – low[1] second= high[2] – low[2] first= high[3] – low[3] high1= high<high[1] low1=low>low[1] inside=high1 and low1 nr= fourth< third and fourth<second and fourth<first and inside     plotshape(nr, style=shape.triangleup, location=location.belowbar, color=color.green, size=size.tiny)