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, …