Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

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 Aufrufe • vor 2 Jahren •via X (Twitter)

11 Kommentare

Profilbild von Keshav Arora
Keshav Aroravor 2 Jahren

Ek hi Dil hai Kitni baar jeetoge sir 🙏

Profilbild von blackswan
blackswanvor 2 Jahren

Oh wow this looks cool 👌

Profilbild von Aniket jain
Aniket jainvor 2 Jahren

What are benefit of it 🤔

Profilbild von AKM
AKMvor 2 Jahren

Great work 👍

Profilbild von TradingAlgo
TradingAlgovor 2 Jahren

This looks 🔥

Profilbild von Arghya Ray
Arghya Rayvor 2 Jahren

Excellent

Profilbild von Mr. आत्मनिर्भर बेरोजगार
Mr. आत्मनिर्भर बेरोजगारvor 2 Jahren

Very nice

Profilbild von Aman Jain🫰🏻
Aman Jain🫰🏻vor 2 Jahren

Kya baate hai Sir. Ek number

Profilbild von Shivam Pardeshi
Shivam Pardeshivor 2 Jahren

Damn 🙌🏻

Profilbild von Rajesh.D
Rajesh.Dvor 2 Jahren

It's only for bank nifty??

Profilbild von I Luv Markets
I Luv Marketsvor 2 Jahren

Go to Inputs and adjust the Ref Strike and Expiry Date

Ähnliche 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 Aufrufe • vor 1 Jahr

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,813 Aufrufe • vor 2 Jahren

MIT defines an algorithm in one sentence that changes how you think about trading "a computational procedure that takes an input and produces an output through a well-defined sequence of steps" that's it. not AI. not machine learning. not a black box a set of rules that takes data in and spits a decision out every quant strategy ever built is just an algorithm Citadel's execution system that routes 40% of US equity volume is an algorithm Renaissance's Medallion Fund running millions of trades per year is an algorithm Jane Street's market making engine processing $26 trillion annually is an algorithm input: market data rules: mathematical conditions output: trade or no trade the difference between a quant desk and a retail trader is not the data it's that one side wrote down their rules precisely enough for a machine to execute them retail says "if RSI is low and the chart looks good, i'll probably buy" a quant desk says "if RSI 1.5, buy 0.3% of NAV" same logic. one is a feeling. the other is an algorithm the feeling can't be tested, can't be repeated, can't be measured the algorithm can be backtested across 10,000 trades and you know exactly when it works and when it doesn't > this lecture: MIT, free, 70 seconds > algorithmic trading volume: 60-75% of all US equity trades > Jane Street, Citadel, Two Sigma: every trade is algorithmically executed > tools to build your own: Python, free data, a laptop you don't need a faster computer or better data you need to write your strategy down precisely enough that a machine could run it without you that's the whole leap. from intuition to algorithm full breakdown in the video below

delost

23,905 Aufrufe • vor 25 Tagen

Major program launch: Data Analytics Professional Certificate! This large, five-course sequence takes you all the way to being job-ready as a data analyst, and shows how to use Generative AI as a thought partner to enhance your work in this role. Offered by on Coursera, this is taught by Sean Barnes, Ph.D., a Data Science & Engineering Leader at Netflix. Analyzing data remains one of the most important skills in where the world is going with AI. This comprehensive certificate takes you all the way to being job-ready. Each course comes with practical projects demonstrated in real-world contexts, such as analyzing sales data for a Korean bakery, video game sales trends across different regions, or identifying factors impacting customer retention for a communications company. You'll also work on estimating fire distribution for forest fire prevention, analyzing how a diamond's properties affect its market value, and developing predictive models for retail sales analysis, carbon emissions, and coral reef conservation. Here's some of what you'll learn: - How to define data and categorize it into its many types such as discrete & continuous numerical, structured & unstructured, time series, categorical, and know what insights can be derived from the different types of data categories. - How to differentiate between data-related job roles and their responsibilities, and how data flows through an organization from the moment of capture to decision-making. - How to perform data processing functions and apply conditional formatting in spreadsheets to extract business value from your data using statistical calculations and best practices for visualizing and interpreting data. - How to use LLMs for stakeholder analysis, data exploration, and data visualization. - Best practices for using LLMs for as a thought partner to data analysis work By the end of this professional certificate program, you will have learned core statistical concepts, analysis techniques, and visualization methodologies that will serve as the foundation for working as a data analyst. The world needs more data analysts, especially ones who know how to use modern generative AI. With data science roles projected to grow 36% by 2033, the skills taught in this program create new professional opportunities in data. Sign up here!

Andrew Ng

84,686 Aufrufe • vor 1 Jahr