Reveals candlesticks that have at least double the average volume.
The number at the low of the candlesticks represents a multiple of how much the candle exceeded the average volume
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
colorcandlewithhighvolume = 1 //set equal to 1 for true and 0 for false, orange colored candlesticks are bearish on high volume and blue colored candlesticks represent high volume bullish candlesticks. volumeaverage = WilderAverage[125](Volume) IF (volume > (2*volumeaverage)) THEN y = ROUND(volume/volumeaverage) //assigns y the integer portion of the volume multiple DRAWTEXT("#y#",barindex,low,SansSerif,standard,11)coloured(0,0,0)//0,102,51 IF (colorcandlewithhighvolume) THEN IF(open < close) THEN DRAWCANDLE(open,high,low,close)COLOURED(0,128,255) ENDIF IF(close < open) THEN DRAWCANDLE(open,high,low,close)COLOURED(243, 132, 0) ENDIF ENDIF ENDIF RETURN |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
Great share!