Open=High pine script for Trading view

Copy and paste below script in pine editor:     // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © sandeshk0101 //@version=5 indicator(“OH”, overlay = true) [do,dh,dl] = request.security(syminfo.tickerid, “D”, [open,high,low], lookahead=barmerge.lookahead_on) day_open= open day_high= high //plot(dh, title=”High”, color=color.red,    linewidth=2, trackprice=true) //plot(do, title=”Open”, color=color.yellow, …

Open=Low Pine Script for Tradingview

Copy Below Script and paste it into pine editor.   Script:   // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © sandeshk0101 //@version=5 indicator(“OL”, overlay = true) [do,dh,dl] = request.security(syminfo.tickerid, “D”, [open,high,low], lookahead=barmerge.lookahead_on) day_open= open day_low= low //plot(dh, title=”High”, color=color.red,    linewidth=2, trackprice=true) //plot(do, …

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 …