Loading video...

Video Failed to Load

Go Home

Trading View - Option Chain Experimental Indicator that shows CE/PE Ltp, Volume, Traded Value (Ltp x Volume) for the chart timeframe Once OI data is available on Trading View , OI data will be added as well. Link [ Animation - Traded Value per min.

46,583 views • 2 years ago •via X (Twitter)

11 Comments

Keshav Arora's profile picture
Keshav Arora2 years ago

Ek hi Dil hai Kitni baar jeetoge sir 🙏

blackswan's profile picture
blackswan2 years ago

Oh wow this looks cool 👌

Aniket jain's profile picture
Aniket jain2 years ago

What are benefit of it 🤔

AKM's profile picture
AKM2 years ago

Great work 👍

TradingAlgo's profile picture
TradingAlgo2 years ago

This looks 🔥

Arghya Ray's profile picture
Arghya Ray2 years ago

Excellent

Mr. आत्मनिर्भर बेरोजगार's profile picture
Mr. आत्मनिर्भर बेरोजगार2 years ago

Very nice

Aman Jain🫰🏻's profile picture
Aman Jain🫰🏻2 years ago

Kya baate hai Sir. Ek number

Shivam Pardeshi's profile picture
Shivam Pardeshi2 years ago

Damn 🙌🏻

Rajesh.D's profile picture
Rajesh.D2 years ago

It's only for bank nifty??

I Luv Markets's profile picture
I Luv Markets2 years ago

Go to Inputs and adjust the Ref Strike and Expiry Date

Related Videos

Why did Ian Whiffin agree to give expert testimony on Jen McCabe’s cellphone extraction, when the state refused to let him look at or even give him the full, original extraction OR its verification hash? A thread🧵 Full cellphone extractions, sometimes called forensic images, generate what’s called a “hash value”, which serves as a unique digital fingerprint necessary for ensuring the integrity of data. Any discrepancy between the hash values indicates tampering with or corruption of evidence, alerting forensic examiners to potential issues with the evidence. Hash verification is a fundamental principle and a rather ubiquitous practice in the world of digital forensics, where data validation and verification are key. It is the gold standard across the industry, and has also become so in the courtroom, whereby admissibility of digital evidence is determined by its relevance, authenticity and reliability. In court, the hash value can be used to demonstrate that the evidence has not been altered since its collection, and is a universal way for experts to authenticate and validate the reliability of data for the trial Court. But, an extraction that’s missing a hash value altogether is a huge red flag. 🚩 Who removed the hash value? And why? It’s necessary to the chain of custody, and as Gaurino and Tully would be well aware, it’s also an element of the data that an expert would require in order to verify and validate it. There’s no “good” reason for why someone would remove a hash value, and the extraction can’t be characterized as a forensic image as its origin is unknown. This was a deliberate step taken to hide something, which one could argue shows consciousness of guilt. If the data are true and accurate, why would you bring their integrity into question by removing the hash? However, if the data were altered or tampered with, and let’s say, hypothetically speaking, you wanted a digital forensic expert to provide testimony supportive of your “Google search” theory. . . In that hypothetical, you’d have to remove the hash value. Otherwise, the expert would immediately detect that the data were altered, as they would not be able to verify the hash against the original. #KarenReadTrial #JusticeForJohnOKeefe #FreeKarenRead #CantonCoverup #PoliceCorruption #KarenRead #Cellebrite #DFIR

Olivia

270,376 views • 1 year ago

CSS in 2024 🤯 You can create a range slider with updating value tooltip and color changing track without using any JavaScript 🤯 ::-webkit-slider-thumb{ view-timeline: --thumb inline; } Scroll animation on the slider thumb that animates a number between the "min" and "max" of the range 😅 @​property --value { syntax: ' '; } @​keyframes sync { to { --value: 100; }} Tie that up to the contain animation-range ⚡️ .control { animation: sync both linear reverse; animation-timeline: --thumb; animation-range: contain; } Hoist the view timeline so the tooltip can use the value too! :root { timeline-scope: --thumb; } Then use it in the counter which goes in the tooltip 😇 .tooltip { counter-reset: val var(--value); } .tooltip::after { content: counter(val); } Then the accent color is based on the value too 🎨 [type=range] { accent-color: hsl(var(--value) 90% 65%); } The magic from the quoted post is using anchor positioning on the range thumb to position that tooltip 👏 Never thought of that when working on the spec for this API. This API lets you tether elements to other elements. Using the pseudo is a clever move! ::-webkit-slider-thumb { anchor-name: --thumb; } .tooltip { position: absolute; anchor-default: --thumb; left: anchor(50%); bottom: calc(anchor(top) + 25%); } The last piece is the little bounce transition... OK. I used a line or two of JavaScript for that 🙏😬 const updateDelta = ({ movementX }) => { document​.documentElement​.style.setProperty('--delta-x', movementX) } document.body.addEventListener('pointermove', updateDelta) But only so you can pass the movement delta to CSS and then reset the position with linear() to get that bouncy transition 😎 .hint { rotate: calc(clamp(-60, var(--delta-x) * -1, 60) * 1deg); transition: rotate 1s linear( 0, 0.2178 2.1%, 1.1144 8.49%, ... ); } Should probably do a video on this one. Lots of little tricks to break down with it for sure! 💯 As always, any questions, let me know! Also, this one only works in Chrome Canary with the Experimental Web Platform Features flag enabled ✅ This one almost feels like rocket science ha 🚀 CodePen.IO link below! 👇

jhey ʕ•ᴥ•ʔ

251,867 views • 2 years ago