Page 16 of 25

Re: WPR Indicators for MT4

Posted: Tue Sep 19, 2023 3:02 am
by vvFish
naluvs01 wrote: Mon Sep 18, 2023 10:09 pm Where did you get the on chart currency pair selector? Thx
;)

Re: WPR Indicators for MT4

Posted: Wed Sep 27, 2023 3:20 pm
by naluvs01
vvFish wrote: Tue Sep 19, 2023 3:02 am;)
Thanks for the indicators. Really Appreciate it! Quick question, how did you get the pairs in a single row? And remove the time buttons? Can't seem to figure it out. Thanks again!

Re: WPR Indicators for MT4

Posted: Thu Dec 28, 2023 9:43 am
by kvak
WPR smoothed dots with mtf, alerts, arrows and button.

Re: WPR Indicators for MT4

Posted: Thu Dec 28, 2023 11:49 am
by traderokey
kvak wrote: Thu Dec 28, 2023 9:43 am WPR smoothed dots with mtf, alerts, arrows and button.
Perfect!

Thanks Kvak

Re: WPR Indicators for MT4

Posted: Thu May 30, 2024 9:29 am
by RodrigoRT7
kvak wrote: Thu Dec 28, 2023 9:43 am WPR smoothed dots with mtf, alerts, arrows and button.
Hi Kvak!! me once again.

Taking into account that this indicator is the basis of Haos, could you update its averages?

Edit: In addition, an insight came to me. Is there a possibility for you to have a version of Haos with your WPR? Of course, the intention is not to compete with the excellent Mr Tools version. I say it in the sense that everyone has their own kit of Avgs with their own strengths.

and wpr's extreme signals have great value :D

my inspiration is the book How I made one million dollars trading commodities by the legendary Larry Williams. If you don't have this book here on the forum, I can share it.

Finally, I don't know if the Haos code is open, I found this one on Tradingview :D

Code: Select all

//@version=4
// Haos Vieual script may be freely distributed under the MIT license.
study("Haos Visual @PuppyTherapy")

lenShort     = input(14, minval=1, title="Willy Short Length")
t3LenShort   = input(8, minval=1, title="T3 Short Length")
t3ConstShort = input(0.7, minval=0, title="T3 Short Constant")

lenLong      = input(96, minval=1, title="Willy Long Length")
t3LenLong    = input(8, minval=1, title="T3 Long Length")
t3ConstLong  = input(0.7, minval=0, title="T3 Long Constant")

// Calculate Willy Function
willy( len )=>
    upper = highest(len)
    lower = lowest(len)
    willy = 100 * (close - upper) / (upper - lower) + 50
    
t3(src, len, const)=>
    xe1_1 = ema(src,    len)
    xe2_1 = ema(xe1_1,  len)
    xe3_1 = ema(xe2_1,  len)
    xe4_1 = ema(xe3_1,  len)
    xe5_1 = ema(xe4_1,  len)
    xe6_1 = ema(xe5_1,  len)
    b_1  =  const
    c1_1 = -b_1*b_1*b_1
    c2_1 = 3*b_1*b_1+3*b_1*b_1*b_1
    c3_1 = -6*b_1*b_1-3*b_1-3*b_1*b_1*b_1
    c4_1 = 1+3*b_1+b_1*b_1*b_1+3*b_1*b_1
    T3 = c1_1 * xe6_1 + c2_1 * xe5_1 + c3_1 * xe4_1 + c4_1 * xe3_1    

shortT3Willy = t3( willy(lenShort) , t3LenShort, t3ConstShort ) 
longT3Willy  = t3( willy(lenLong)  , t3LenLong,  t3ConstLong ) 

hline(35, title="Haos Short Zone", color=color.red, linestyle=hline.style_dotted, linewidth=1)
hline(-35, title="Haos Long Zone" , color=color.green, linestyle=hline.style_dotted, linewidth=1)

shortT3WillyColor = shortT3Willy > shortT3Willy[1] ? color.lime : color.red
plot(shortT3Willy, color=shortT3WillyColor, style=plot.style_line,     linewidth=3, title="Willy Short - Line")
plotshape(shortT3WillyColor==color.lime and shortT3WillyColor[1]==color.red  ? shortT3Willy : na, location=location.absolute, style=shape.circle, color=color.lime, size=size.tiny, transp=20)
plotshape(shortT3WillyColor==color.red  and shortT3WillyColor[1]==color.lime ? shortT3Willy : na, location=location.absolute, style=shape.circle, color=color.red, size=size.tiny, transp=20)

longT3WillyColor = longT3Willy > 0 ? longT3Willy > longT3Willy[1] ? color.lime : #228B22 : longT3Willy > longT3Willy[1] ? color.red : #8B0000
plot(longT3Willy, color=color.white,      style=plot.style_line,      linewidth=1, title="Willy Long - Line", transp = 50)
plot(longT3Willy, color=longT3WillyColor, style=plot.style_histogram, linewidth=2, title="Willy Long -Histogram", transp = 75)
Thank you very much in advance!!

Re: WPR Indicators for MT4

Posted: Fri May 31, 2024 5:41 am
by kvak
RodrigoRT7 wrote: Thu May 30, 2024 9:29 am Hi Kvak!! me once again.

Taking into account that this indicator is the basis of Haos, could you update its averages?

Edit: In addition, an insight came to me. Is there a possibility for you to have a version of Haos with your WPR? Of course, the intention is not to compete with the excellent Mr Tools version. I say it in the sense that everyone has their own kit of Avgs with their own strengths.

and wpr's extreme signals have great value :D

my inspiration is the book How I made one million dollars trading commodities by the legendary Larry Williams. If you don't have this book here on the forum, I can share it.

Finally, I don't know if the Haos code is open, I found this one on Tradingview :D

Hello.
Here is updated WPR.
In this indicator I made WPR as a function and you are able to choose price type....
For HAOS, yes I think, I am able to do version if you want....

Re: WPR Indicators for MT4

Posted: Sun Jun 02, 2024 6:25 am
by kvak
RodrigoRT7 wrote: Thu May 30, 2024 9:29 am Is there a possibility for you to have a version of Haos with your WPR?
Haos Visual (WPR) indicator with latest MA Filters

Hello

Here is simply Haos indicator... test it....

Re: WPR Indicators for MT4

Posted: Sun Jun 02, 2024 9:09 am
by JCCTREND
Congratulations for the haos indi. Could you please tell me what is the main chart indicator? . Thank you

Re: WPR Indicators for MT4

Posted: Sun Jun 02, 2024 4:04 pm
by RodrigoRT7
JCCTREND wrote: Sun Jun 02, 2024 9:09 am Congratulations for the haos indi. Could you please tell me what is the main chart indicator? . Thank you
Hello JCCTREND, how are you? possibly this here is the indicator Super Trend (Profit max)

Re: WPR Indicators for MT4

Posted: Sun Jun 02, 2024 7:54 pm
by moey_dw
kvak wrote: Sun Jun 02, 2024 6:25 am Haos Visual (WPR) indicator with latest MA Filters

Hello

Here is simply Haos indicator... test it....
Kvak man...... congratulations on coding the Haos visual this is a really nice modern code 🙏🙏🙏