Weis Wave Volume
Forums › ProRealTime foro Español › Soporte ProBuilder › Weis Wave Volume
- This topic has 5 replies, 2 voices, and was last updated 7 years ago by Nicolas.
-
-
10/14/2017 at 10:34 AM #49351
Encontré este curioso indicador en la plataforma Tradingview creado por el gran Lazy Bear: https://es.tradingview.com/script/HFGx4ote-Indicator-Weis-Wave-Volume-LazyBear/
Tengo esta adaptación para Prorealtime y me gustaría que alguién le echara un vistazo para corroborar si el código es correcto o contiene algún fallo…
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869REM WEIS WAVE VOLUME// @author LazyBear// List of all indicators Lazy Bear: https://www.tradingview.com/v/4IneGo8h///adaptación para Prorealtime por bolsatrilera//En cuadro de variables, showDistributionBelowZero=falso, tipo=boleano//En cuadro de variables, nz =falso,tipo=boleanotrendDetectionLength=2if close>close[1] thenmov=1elsif close<close[1] thenmov=-1elsemov=0endifif mov <>0 and mov <> mov[1] thentrend=movelsetrend=trend[nz]endifrising=abs(close-close[1])>abs(close-close[trendDetectionLength])falling=abs(close-close[1]<abs(close-close[trendDetectionLength]))if rising or falling thenisTrending= rising or fallingendifif trend <> wave[nz] and isTrending thenwave=trendelsewave=wave[nz]endifif wave=wave[1] thenvol=vol[nz]+volumeelsevol=volumeendifif wave=1 thenup=volelseup=0endifif showDistributionBellowZero thenif wave=1 thendn=0endifendifif wave=-1 thendn=-volelsedn=volendifif wave=1 thendn=0elsedn=volendifreturn up coloured (0,128,0)style(histogram)as "up",dn coloured(255,0,0)style(histogram)as "dn"10/14/2017 at 5:04 PM #4937510/14/2017 at 9:23 PM #49379está definido Nicolas, se pone nz en el cuadro de variables y se elige tipo=boleano
10/16/2017 at 7:42 AM #49473Oh ya veo, pero esa no es la forma en que debería haberlo codificado 🙂
Puede eliminar y reemplazar todo su [nz] con [1] en este caso, para estar perfectamente de acuerdo con el código original.¿Por qué no agregar esto también en nuestra biblioteca? ¡Otra buena adición! Gracias.
10/16/2017 at 5:28 PM #49605lo que usted me dice es algo como esto ,¿ no es así Nicolas?
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768REM WEIS WAVE VOLUME// @author LazyBear// List of all indicators Lazy Bear: https://www.tradingview.com/v/4IneGo8h///adaptación para Prorealtime por bolsatrileratrendDetectionLength=2if close>close[1] thenmov=1elsif close<close[1] thenmov=-1elsemov=0endifif mov <>0 and mov <> mov[1] thentrend=movelsetrend=trend[0]endifrising=abs(close-close[1])>abs(close-close[trendDetectionLength])falling=abs(close-close[1]<abs(close-close[trendDetectionLength]))if rising or falling thenisTrending= rising or fallingendifif trend <> wave[1] and isTrending thenwave=trendelsewave=wave[0]endifif wave=wave[1] thenvol=vol[0]+volumeelsevol=volumeendifif wave=1 thenup=volelseup=0endifif 0 thenif wave=1 thendn=0endifendifif wave=-1 thendn=-volelsedn=volendifif wave=1 thendn=0elsedn=volendifreturn up coloured (0,128,0)style(histogram)as "up",dn coloured(255,0,0)style(histogram)as "dn"1 user thanked author for this post.
10/17/2017 at 10:51 AM #49660 -
AuthorPosts