@_zheergen: I met a veteran quantitative finance expert at PyData who gave a systematic talk on Python's practical use in Quant Finance. I asked him how someone with a math, finance, or physics background can turn Python into a truly efficient quant tool faster. He gave…

X AI KOLs Timeline News

Summary

A quantitative finance expert systematically explained the practical use of Python in quantitative finance at PyData, covering tools such as NumPy, SciPy, Pandas, Numba, and recommended the open-source library DX Analytics and the resource list awesome-quant.

I met an expert who has been deeply involved in quantitative finance for many years. At the PyData conference, he systematically explained the practical use of Python in Quant Finance. I asked him, if one already has a background in mathematics, finance, or physics, how can they use Python more quickly as a truly efficient quantitative tool? His approach was very clear: > Python's syntax is close to mathematical formulas, and the Black-Scholes model can be written almost directly from its formula. > NumPy, SciPy, Pandas, and Notebook allow you to quickly set up a complete research workflow. > Python can also interface with R, Julia, and Plotly for statistical analysis, accelerated computing, and interactive visualization. What's more interesting is Python's integration capability. He demonstrated live how to first read financial data with Python, then switch to R for regression analysis, use Julia to speed up computation, and finally generate interactive charts with Plotly—the entire process seamlessly connected. He also specifically addressed the issue of Python not being fast enough. With Numba's JIT compilation, nested loops can approach C-like speed while being more memory-efficient than pure vectorization, making it especially suitable for large derivatives portfolios and Monte Carlo simulations. Finally, using his own open-source library DX Analytics, he demonstrated how to perform VaR calculations and Greek sensitivity analysis for a complex portfolio with thousands of option positions and 250 risk factors. The entire process was very complete and close to real-world business. It's hard to find such a systematic and practical Python quant finance talk online. It's suitable for anyone wanting to build a quantitative trading, derivatives pricing, or risk management system. Following it through will be very enlightening.
Original Article
View Cached Full Text

Cached at: 07/20/26, 11:24 AM

I met an expert who has been deeply involved in quantitative finance for many years. At the PyData conference, he systematically explained the practical use of Python in Quant Finance.

I asked him how someone with a background in math, finance, or physics could turn Python into a truly efficient quantitative tool more quickly.

His thinking was very clear:

Python syntax is close to mathematical formulas — the Black-Scholes model can be written almost directly from the formula.
NumPy, SciPy, Pandas, and Notebook let you quickly build a complete research workflow.
Python can also connect to R, Julia, and Plotly for statistical analysis, accelerated computation, and interactive visualization.

What’s even more interesting is Python’s integration ability. He demonstrated live: first use Python to read financial data, then switch to R for regression analysis, use Julia to speed up computation, and finally generate interactive charts with Plotly — the entire process seamlessly chained together.

He also specifically addressed the issue of Python not being fast enough. Through Numba’s JIT compilation, nested loops can approach C-like speed while being more memory-efficient than pure vectorization, making it especially suitable for large derivative portfolios and Monte Carlo simulations.

Finally, he used his own open-source library, DX Analytics, to demonstrate VaR calculation and Greek sensitivity analysis on a complex portfolio containing thousands of option positions and 250 risk factors. The entire process was very complete and very close to real-world business.

It’s hard to find another online talk on Python in quantitative finance that is this systematic and practical.

It’s perfect for anyone looking to build quantitative trading, derivatives pricing, or risk management systems. Following the entire process will be very inspiring.

爱吃折耳根的Ace (@_zheergen):
🚨Guys! The 28K Star quantitative finance resource collection covers almost all the tools you can use.

awesome-quant is a long-maintained Awesome List that specifically collects high-quality resources related to quantitative finance.

The repository organizes a large number of books, papers, tool libraries, data sources, courses, and community links by category, covering all directions from beginner to advanced.

Key highlights:

Similar Articles

@_zheergen: Earlier, I met a teacher who explained the entire quantitative pipeline very thoroughly. I asked him if there was a single video that could truly string together "data scraping → machine learning prediction → portfolio optimization → strategy backtesting." He showed me a very clear full-stack framework: from environment setup, ARIMA and NeuralProph…

X AI KOLs Timeline

Introduces a full-stack hands-on Python quantitative trading video tutorial, covering data scraping, machine learning prediction, portfolio optimization, and strategy backtesting, and mentions the open-source quantitative trading execution system Kungfu.

@WEB3_furture: What did the world's most expensive financial teams open source on GitHub? How can ordinary people learn about quantitative trading? Directly getting hands-on is the fastest way. Top quantitative and high-frequency trading institutions like Jane Street, Goldman Sachs, J.P. Morgan, etc., have released representative financial/engineering tools to help ordinary quant...

X AI KOLs Timeline

This tweet introduces three financial/engineering tools open-sourced by top quantitative institutions such as Jane Street, Goldman Sachs, and J.P. Morgan: magic-trace (high-precision process tracing), gs-quant (Python package for derivatives pricing and risk management), and Perspective (real-time data visualization tool), helping quant enthusiasts gain institutional-level technical capabilities for free.

@_zheergen: Wow! Goldman Sachs open-sourced their quantitative toolkit gs-quant. Goldman Sachs has open-sourced the Python quant library used by their internal quants, currently with 11.3K stars on GitHub. It offers a rich set of quantitative analysis tools for structured products…

X AI KOLs Timeline

Goldman Sachs open-sourced its internal quantitative trading toolkit gs-quant, providing institutional-grade derivatives pricing, risk management, and strategy development tools. It has received 11.3K GitHub stars.

@geekbb: A Chinese quantitative finance tutorial for absolute beginners, using Jupyter Notebook format, each chapter can be run through in about 30 minutes. The first installment includes 4 chapters: quantitative cognition, return analysis, dual moving average strategy, and strategy backtesting. Uses yfinance to fetch real market data. https://github.c…

X AI KOLs Timeline

A Chinese quantitative finance tutorial for absolute beginners, using Jupyter Notebook format, containing 4 chapters (quantitative cognition, return analysis, dual moving average strategy, and strategy backtesting). Uses yfinance to fetch real data, each chapter can be run through in about 30 minutes.

@XAMTO_AI: Finding reliable open-source libraries for quantitative and algorithmic trading can be tough amid the vast and scattered online resources. awesome-systematic-trading is a curated list of free quantitative libraries sorted by language, making it easy to jump to the right resources. It mainly includes:

X AI KOLs Timeline

This article introduces a GitHub repository called awesome-systematic-trading, which categorizes free open-source quantitative trading libraries and resources by programming language, helping developers quickly find suitable tools.