Adaptation for Prorealtime V10.3 of the Weis Wave Volume indicator created by Lazy Bear for the Tradingview platform.
This indicator takes the volume and organizes it in waves, highlighting the inflection points as well as the supply / demand.
Adaptación para Prorealtime V10.3 del indicador Weis Wave Volume creado por Lazy Bear para la plataforma Tradingview.
Este indicador toma el volumen y lo organiza en ondas , destacando los puntos de inflexión así como la oferta/demanda.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
REM WEIS WAVE VOLUME // @author LazyBear // List of all indicators Lazy Bear: https://www.tradingview.com/v/4IneGo8h/ //adaptación para Prorealtime por bolsatrilera trendDetectionLength=2 if close>close[1] then mov=1 elsif close<close[1] then mov=-1 else mov=0 endif if mov <>0 and mov <> mov[1] then trend=mov else trend=trend[0] endif rising=abs(close-close[1])>abs(close-close[trendDetectionLength]) falling=abs(close-close[1]<abs(close-close[trendDetectionLength])) if rising or falling then isTrending= rising or falling endif if trend <> wave[1] and isTrending then wave=trend else wave=wave[0] endif if wave=wave[1] then vol=vol[0]+volume else vol=volume endif if wave=1 then up=vol else up=0 endif if 0 then if wave=1 then dn=0 endif endif if wave=-1 then dn=-vol else dn=vol endif if wave=1 then dn=0 else dn=vol endif return up coloured (0,128,0)style(histogram)as "up",dn coloured(255,0,0)style(histogram)as "dn" |
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 :PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
great idea
changing the trendDetectionLength setting does not seem to have any effect on the wave calculation!?
i can’t seem to get this indicator to work on forex pairs. it works great on indices etc. Any ideas what I’m doing wrong
Indicator needs Volume, and there are no volumes with forex pairs with IG.