Elite indicators :) - page 1464

 

Dear Mladen, can you please convert this codes into mt4 indicator..

 One of the pro-member of tradingview(dot)com shared his indi code for everyone but it is the form of pinescript

 

CM_Williams_Vix_Fix Finds Market Bottoms

Larry Williams Developed This Incredible Indicator. It Gives The Same Readings The VIX -7.78% does for Stock Index’s…But This Indicator Works on All Asset Classes. 

 

Download the PDF and Read To Learn Larry’s Thought Process. 

https://dl.dropboxusercontent.com/u/77187122/TradingView%20Posts/VIXFix.pdf  

 

capture1 

capture2

 

study("CM_Williams_Vix_Fix", overlay=false)

pd = input(22, title="LookBack Period Standard Deviation High")

bbl = input(20, title="Bolinger Band Length")

mult = input(2.0    , minval=1, maxval=5, title="Bollinger Band Standard Devaition Up")

lb = input(50  , title="Look Back Period Percentile High")

ph = input(.85, title="Highest Percentile - 0.90=90%, 0.95=95%, 0.99=99%")

pl = input(1.01, title="Lowest Percentile - 1.10=90%, 1.05=95%, 1.01=99%")

hp = input(false, title="Show High Range - Based on Percentile and LookBack Period?")

sd = input(false, title="Show Standard Deviation Line?")


wvf = ((highest(close, pd)-low)/(highest(close, pd)))*100


sDev = mult * stdev(wvf, bbl)

midLine = sma(wvf, bbl)

lowerBand = midLine - sDev

upperBand = midLine + sDev


rangeHigh = (highest(wvf, lb)) * ph

rangeLow = (lowest(wvf, lb)) * pl



col = wvf >= upperBand or wvf >= rangeHigh ? lime : gray



plot(hp and rangeHigh ? rangeHigh : na, title="Range High Percentile", style=line, linewidth=4, color=orange)

plot(hp and rangeLow ? rangeLow : na, title="Range High Percentile", style=line, linewidth=4, color=orange)

plot(wvf, title="Williams Vix Fix", style=histogram, linewidth = 4, color=col)

plot(sd and upperBand ? upperBand : na, title="Upper Band", style=line, linewidth = 3, color=aqua) 

 
Sami1990:

Dear Mladen, can you please convert this codes into mt4 indicator..

 One of the pro-member of tradingview(dot)com shared his indi code for everyone but it is the form of pinescript

 

CM_Williams_Vix_Fix Finds Market Bottoms

Larry Williams Developed This Incredible Indicator. It Gives The Same Readings The VIX -7.78% does for Stock Index’s…But This Indicator Works on All Asset Classes. 

 

Download the PDF and Read To Learn Larry’s Thought Process. 

https://dl.dropboxusercontent.com/u/77187122/TradingView%20Posts/VIXFix.pdf  

I saw some YT videos of you :)
 
krelian99:
lol, yes. D'Artagnan is Timmy, right?
The loverboy sounds like me !
Nothing can go wrong now😊
 
Sami1990:

Dear Mladen, can you please convert this codes into mt4 indicator..

 One of the pro-member of tradingview(dot)com shared his indi code for everyone but it is the form of pinescript

 

CM_Williams_Vix_Fix Finds Market Bottoms

Larry Williams Developed This Incredible Indicator. It Gives The Same Readings The VIX -7.78% does for Stock Index’s…But This Indicator Works on All Asset Classes. 

 

Download the PDF and Read To Learn Larry’s Thought Process. 

https://dl.dropboxusercontent.com/u/77187122/TradingView%20Posts/VIXFix.pdf  

 

 


 

study("CM_Williams_Vix_Fix", overlay=false)

pd = input(22, title="LookBack Period Standard Deviation High")

bbl = input(20, title="Bolinger Band Length")

mult = input(2.0    , minval=1, maxval=5, title="Bollinger Band Standard Devaition Up")

lb = input(50  , title="Look Back Period Percentile High")

ph = input(.85, title="Highest Percentile - 0.90=90%, 0.95=95%, 0.99=99%")

pl = input(1.01, title="Lowest Percentile - 1.10=90%, 1.05=95%, 1.01=99%")

hp = input(false, title="Show High Range - Based on Percentile and LookBack Period?")

sd = input(false, title="Show Standard Deviation Line?")


wvf = ((highest(close, pd)-low)/(highest(close, pd)))*100


sDev = mult * stdev(wvf, bbl)

midLine = sma(wvf, bbl)

lowerBand = midLine - sDev

upperBand = midLine + sDev


rangeHigh = (highest(wvf, lb)) * ph

rangeLow = (lowest(wvf, lb)) * pl



col = wvf >= upperBand or wvf >= rangeHigh ? lime : gray



plot(hp and rangeHigh ? rangeHigh : na, title="Range High Percentile", style=line, linewidth=4, color=orange)

plot(hp and rangeLow ? rangeLow : na, title="Range High Percentile", style=line, linewidth=4, color=orange)

plot(wvf, title="Williams Vix Fix", style=histogram, linewidth = 4, color=col)

plot(sd and upperBand ? upperBand : na, title="Upper Band", style=line, linewidth = 3, color=aqua) 

Yep, Mladen if you could please convert this one for us!

 
Dimi.A:

Yep, Mladen if you could please convert this one for us!

There is already a vix indicator for metatrader

Here is just one of the versions (this one is using jurik filter for smoothing)

Files:
 
Not sure if this LW indicator will actually help.
The VIX of all indices (see VDAX) is near alltime lows.

Sixer
Files:
 

Upgraded bb stops (some code changes mainly)


 
mladen:

There is already a vix indicator for metatrader

Here is just one of the versions (this one is using jurik filter for smoothing)


Mladen could you make a combined Vix Fix which finds market bottoms as well as tops?
Some one has the MT4 Vix Fix for sale for $49USD (link) but I know with your skills you can convert the one from Tradingview (posted above) and make one that finds tops too!

Please?


 



 
Dimi.A:


Mladen could you make a combined Vix Fix which finds market bottoms as well as tops?
Some one has the MT4 Vix Fix for sale for $49USD (link) but I know with your skills you can convert the one from Tradingview (posted above) and make one that finds tops too!

Please?


 
Sixer:
Not sure if this LW indicator will actually help.
The VIX of all indices (see VDAX) is near alltime lows.

Sixer

Please look on the chart. VDAX isn't at a all-time low and I wrote you dates of the local highs on it. You can see a periodicity. It must be in a valley to take momentum.


Reason: