top of page
  • Writer's picture

Day high volume pine code for TradingView - New

Paste the below code in pine editor and save it, apply on chart and you will get a arrow highlighting the day high volume on an Intraday chart, you can hide this on a daily timeframe chart.


//@version=4

study(title="Highest Volume of the Day Signal", shorttitle="HVOD", overlay=true)


var float highestVolume = na

var bool isHighestVolume = na


if (dayofweek != dayofweek[1])

highestVolume := volume

else if (volume > highestVolume)

highestVolume := volume


isHighestVolume := volume == highestVolume


// Plot a signal on the chart, but only when not on the daily timeframe

plotshape(series=isHighestVolume and timeframe.isintraday, title="Highest Volume", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)


16 views0 comments

Recent Posts

See All

F&O Scans - Mean reverting and trend following

FNO scans – 1)      Mean reverting intraday- Turtle scan for mean reverting trades at 20 day high/ low https://chartink.com/screener/turtle-trader-20-day-scan 2)      Mean reverting intraday – Failure

Q&A session - 19 Nov - 11 AM

Deepak is inviting you to a scheduled Zoom meeting. Topic: TradersClub Q&A session Time: Nov 19, 2023 11:00 AM India Join Zoom Meeting https://us02web.zoom.us/j/84777394528?pwd=bFFwRXViOW56bFFSd0RyYUo

Turtle Soup Scanner - Chartink

Below is the scan for Turtle soup study, this chartink scan can be used to identify stocks which come in turtle list and then manually tracked for trade set up. https://chartink.com/screener/turtle-tr

bottom of page