MatthewA
Active member
No problem...You are right...they were off screen...Sorry for the false alarm...
That is good of you to notice

That's all I will say about that without going off topic
No problem...You are right...they were off screen...Sorry for the false alarm...
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
@netarchitech I dont want to go into a bunch of harmful conspiracies about "market makers" and all other sorts of crazy about Jay-Z and the illuminati.No problem...
That is good of you to noticethink of the institutions who accumulated those contracts during times of very little price move...
That's all I will say about that without going off topic
Curious if you could share link your simplified version. Thank you. If not, no worries.simplified it a bit for my personal taste. Thanks for the work guys! will def be interested to see more developments.
View attachment 20855
@MatthewA Yeah...I hear what you're saying...think of the institutions who accumulated those contracts during times of very little price move...
That's all I will say about that without going off topic
I think the DPLs off screen can help estimate distributions even in assets that do not have many options on the books ...No worries with regard to Conspiracies...Although, with that said, I must admit I have been prone to one or two along the way![]()
I think they are removing the Ease Of Movement that colors the bars bright or dim blue colors.Curious if you could share link your simplified version. Thank you. If not, no worries.
@MatthewA What would the EoM line look like on the chart vs. the current candle-coloring? Interesting...I was going to suggest an option for users who do not want to color their bars bright or dark to use EoM as part of a line near price. The reason for that is I know that EoM may seem like its just the inverse of DPL but there are more mathematics possible.
All roads lead back to Hull's Moving Average and @mashume's excellent application of it...Where many other studies/indicators have fallen by the wayside on my charts, @mashume's HMA continues to provide and residethe market naturally expands and contacts in irregular cycles, and so the EoM score is unlikely to ever repeat more than 3 bars or so. We could use some calculus to derive a relationship for this or also we may revisit @mashume Curving solution with a nonrepainting version. When the curve of the HullMoving Average was approximated we used a very distant target for the next bar which was difficult to reach. However by shortening the target when the EoM is large and lengthening the target when the EoM is small we could set the curve back a bar and no longer have to deal with repainting.
OK...Easier first sounds good to me...I'll rummage around in my ol' bag of tricks and see what rises to the occasion...I think the DPLs off screen can help estimate distributions even in assets that do not have many options on the books ...
But let's do the easier tasks such as volatility first. You have tried VixFix, I have to do school work yet let me know what other models you want and I will try to get on it after my next test on Thursday![]()
Sure thing, give this a shot: http://tos.mx/qRlAmj8.Curious if you could share link your simplified version. Thank you. If not, no worries.
Oh yeah totally agree! I only thought it was unfinished and figured id work with some of the bones of the script to fit my current needs. And when this bad boy is all done I would use it stand-alone to see how I like it. But totally respect the process and the thought that has gone into this man, dont want you to think I dont respect the work!That color scheme looks very nice.
I was going to suggest an option for users who do not want to color their bars bright or dark to use EoM as part of a line near price. The reason for that is I know that EoM may seem like its just the inverse of DPL but there are more mathematics possible.
1) On the simple side: you may want to know about areas where price will later coast through Easily , to prevent you from moving into fake moves. . . Please look in the past at days where the SPY futures failed to leave a narrow range of DPLs
2) On the More complex side: the market naturally expands and contacts in irregular cycles, and so the EoM score is unlikely to ever repeat more than 3 bars or so. We could use some calculus to derive a relationship for this or also we may revisit @mashume Curving solution with a nonrepainting version. When the curve of the HullMoving Average was approximated we used a very distant target for the next bar which was difficult to reach. However by shortening the target when the EoM is large and lengthening the target when the EoM is small we could set the curve back a bar and no longer have to deal with repainting. https://usethinkscript.com/threads/...ng-points-and-concavity-2nd-derivatives.1803/
3) Even if you do not need EoM to color the bars for the past to reasons I am using calculus to derive long term polynomials with EoM and Mobiuses Delta Momentums https://usethinkscript.com/threads/tmo-true-momentum-oscillator-for-thinkorswim.9413/page-3
Yes it does seem redundant and inefficient to have EoM and DPL together even if they were written by different people but if we Winsorize both terms separately we still need those for other option![]()
declare lower;
#declare hide_on_intraday;
#IVPercentile
def vol = imp_volatility();
input DisplayIVPercentile = yes;
input TimePeriod = 252;
input LowVolLimit = 30;
input HighVolLimit = 50;
input Display6monthIVR = yes;
input MiddleTimePeriod = 126;
input DisplayShorterTerm = yes;
input ShortTimePeriod = 63;
input DisplayImpVolatility = yes;
input DisplayDaily1StandardDev = no;
input DisplayWeekly1StandardDev = yes;
input DisplayMonthly1StandardDev = yes;
input InvertRedGreen = yes;
input PercentileMALength = 21;
def data = if !IsNaN(vol) then vol else vol[-1];
def hi = Highest(data, TimePeriod);
def lo = Lowest(data, TimePeriod);
def MiddleHi = Highest(data, MiddleTimePeriod);
def MiddleLo = Lowest(data, MiddleTimePeriod);
def ShortHi = Highest(data, ShortTimePeriod);
def ShortLo = Lowest(data, ShortTimePeriod);
plot Percentile = (data โ lo) / (hi โ lo) * 100;
Percentile.SetDefaultColor(CreateColor(0, 102, 204));
Percentile.SetLineWeight(2);
plot PercentileMA = ExpAverage(Percentile, PercentileMALength);
PercentileMA.SetDefaultColor(Color.ORANGE);
PercentileMA.SetLineWeight(2);
def lowend = Percentile < LowVolLimit; def highend = Percentile > HighVolLimit;
def mPercentile = (data โ MiddleLo) / (MiddleHi โ MiddleLo) * 100;
def MiddleLowend = mPercentile < LowVolLimit;
def MiddleHighend = mPercentile < HighVolLimit;
def sPercentile = (data โ ShortLo) / (ShortHi โ ShortLo) * 100;
def ShortLowend = sPercentile < LowVolLimit; def ShortHighend = sPercentile > HighVolLimit;
DefineGlobalColor(โlowcolorโ, if InvertRedGreen then Color.RED else Color.GREEN);
DefineGlobalColor(โShortlowcolorโ, if InvertRedGreen then Color.GREEN else Color.GREEN);
DefineGlobalColor(โhighcolorโ, if InvertRedGreen then Color.GREEN else Color.RED);
DefineGlobalColor(โShorthighcolorโ, if InvertRedGreen then Color.GREEN else Color.RED);
#Labels
AddLabel(DisplayIVPercentile , Concat(โIV Rank = โ, AsPrice(Round(Percentile, 0))), color = CreateColor(255-(Percentile*2.55),Percentile*2.55,0));
AddLabel(Display6monthIVR , Concat(โ6mo IVR = โ, AsPrice(Round(mPercentile , 0))), color = CreateColor(255-(mPercentile*2.55),mPercentile*2.55,0));
AddLabel(DisplayShorterTerm , Concat(โ3mo IVR = โ, AsPrice(Round(sPercentile , 0))), color = CreateColor(255-(sPercentile*2.55),sPercentile*2.55,0));
AddLabel(DisplayImpVolatility, Concat(โImpVol: โ, AsPercent(vol)), if lowend then color.gray else if highend then color.gray else color.gray);
def ImpPts = (vol / Sqrt(252)) * close;
AddLabel(DisplayDaily1StandardDev , Concat(โ1 Day SD +/- $โ, AsText( ImpPts, NumberFormat.TWO_DECIMAL_PLACES)), if lowend then color.gray else if highend then color.gray else Color.gray);
def ImpPts2 = (vol / Sqrt(52)) * close;
AddLabel(DisplayWeekly1StandardDev, Concat(โ1 Week SD +/- $โ, AsText( ImpPts2, NumberFormat.TWO_DECIMAL_PLACES)), if lowend then color.gray else if highend then color.gray else Color.gray);
def ImpPts3 = (vol / Sqrt(12)) * close;
AddLabel(DisplayMonthly1StandardDev, Concat(โ1 Month SD +/- $โ, AsText( ImpPts3, NumberFormat.TWO_DECIMAL_PLACES)), if lowend then color.gray else if highend then color.gray else Color.gray);
plot LowVol = LowVolLimit;
plot HighVol = HighVolLimit;
LowVol.SetDefaultColor(GetColor(6));
HighVol.SetDefaultColor(GetColor(5));
Nice and thank you!Sure thing, give this a shot: http://tos.mx/qRlAmj8.
If not, here is my entire grid. It'll be overwhelming im sure, mainly because its laid out on a 49" monitor so the picture is going to look stretched, but here is how it looks on my end. I got a little comprehensive in my screenshot with the edits and labels, but ive been meaning to put something similar to this for a chat room, so kinda killed two birds.
This is a new flex grid I have been using. you are asking for only a tiny sliver of it, but do so as you please, strip it for parts, enjoy! P.S I have 3 other workspaces as well if interested.
Flex: http://tos.mx/TeiMcxS
I know itll be wonky for some to view so I used two different file types and also hosted picture here in case its too hard to see embedded.
View attachment 20864View attachment 20862
My last exams scored well
Thanks for the IV suggestions let's continue testing.
I will make sure to refer to you as Dr. Matthew when you return, I missed the thread and discussions when this was open but from the screenshots looks very promising!I have to studyfor my Medical Exams so I won't be able to do these calculations for a couple days.
@MerryDay @Ramisegal @netarchitech @chewie76 is it okay if we relaunch this a little later?
I am still excited to later bring Volume and Volatility together in a statistically significant way
Thank you all for the direction![]()
@MatthewA When you get a second, Do you mind explaining what the multi colored line represents and it's intended use. Thanks for you time.Welcome back, @MatthewA ...I hope all is well...
Looking forward to seeing what you had in mind Volatility-wise...
The IV Study I posted (https://usethinkscript.com/threads/view-of-volume-and-volatility-in-thinkorswim.17713/post-137588) seems to do a pretty good job...I just have to keep in mind that it's an inverse...The moving average applied to the IV seems to do a pretty good job of smoothing out the IV and providing trend information...
I would be interested in hearing your thoughts when/if you have a moment to do so...
Keep up the good work!![]()
Yes sorry I have been out for a minute.Hope everyone is having a great weekend. Can someone kindly provide a detailed explanation on how to use and what the different lines represent to us dummies. (Me) Thanks!
@MatthewA When you get a second, Do you mind explaining what the multi colored line represents and it's intended use. Thanks for you time.
View attachment 20980
Absolutely Yes. I have also been working with Implied Volatility as an option for Volume in the drop down menu.I would be interested in hearing your thoughts when/if you have a moment to do so...
Keep up the good work!![]()
Start a new thread and receive assistance from our community.
useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.
We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.
If you are new, or just looking for guidance, here are some helpful links to get you started.