naluvs01 wrote: Mon Sep 18, 2023 10:09 pm Where did you get the on chart currency pair selector? Thx
![Wink ;)](https://forex-station.com/images/smilies/icon_e_wink.png)
naluvs01 wrote: Mon Sep 18, 2023 10:09 pm Where did you get the on chart currency pair selector? Thx
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!
Perfect!
Hi Kvak!! me once again.
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)
Hello.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
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
Haos Visual (WPR) indicator with latest MA FiltersRodrigoRT7 wrote: Thu May 30, 2024 9:29 am Is there a possibility for you to have a version of Haos with your WPR?
Hello JCCTREND, how are you? possibly this here is the indicator Super Trend (Profit max)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
Kvak man...... congratulations on coding the Haos visual this is a really nice modern codekvak wrote: Sun Jun 02, 2024 6:25 am Haos Visual (WPR) indicator with latest MA Filters
Hello
Here is simply Haos indicator... test it....
Users browsing this forum: AlgoAlex811, Google Images [Bot], JohnL33, RACER-X, Shabba23, Steam1, vitual_21, xmixers and 85 guests