SlideShare a Scribd company logo
1 of 30
CONFIDENTIAL
How to run a quantitative trading
business in China using Python
QuantCon Singapore
2017-09-29
CONFIDENTIALCONFIDENTIAL
 Overview of Chinese Market
 Data Management - TuShare
 Strategy Development
 Automated Trading - vn.py
 Summary and QA
www.junzhiam.com 3
CONFIDENTIALCONFIDENTIAL
About Me
 My name is Xiaoyou Chen.
 Head of Option Trading at Junzhi Asset Management (均直
资管)
 Creator of vn.py project
www.junzhiam.com 4
CONFIDENTIALCONFIDENTIAL
About Junzhi Asset Management
 Multi-strategy Quant Fund
 Equity Long-Short
 Trend Following
 Statistical Arbitrage
 Volatility Trading
 Fixed Income Arbitrage
 Several billion AUM in CNY
 In-house Developed Trading Software
www.junzhiam.com 5
CONFIDENTIALCONFIDENTIAL
Chinese Financial Market Overview
Market Overview
Stock
• Over 3300 stocks and 160 ETFs
• World No.2 by Market Cap
• World No.2 by Turnover
Futures
• 43 commodity, 3 equity index and 2 bond futures
• World No. 2 by Turnover
Options
• 1 ETF option: SZ50 ETF
• 2 commodity options: soybean meal, sugar
www.junzhiam.com 6
Data from www.world-exchanges.org (August 2017):
• Stock Market Cap: China $6.6 trillion vs US $29.7 trillion
• Stock Monthly Turnover: China $1.78 trillion vs US $2.28 trillion
• Commodity Monthly Turnover: China $1.23 trillion vs US $4.98 trillion
CONFIDENTIALCONFIDENTIAL
Market Features
www.junzhiam.com 7
 Exchange markets instead of dealer markets
 Stocks only trading on one exchange, no ECN or dark pools
 API available, with restrictions on stocks trading
 Margin trading with leverage ratio < 2
 Short selling available but difficult to find shares
CONFIDENTIALCONFIDENTIAL
Traditional vs New Methods for Quant Trading
Automated Trading
C++ Python
Strategy Development
Matlab/R Python
Data Management
SQL Python
www.junzhiam.com 8
CONFIDENTIALCONFIDENTIAL
Python Advantages
Easy to Learn
Fast to Write
Batteries Included
Open-source
www.junzhiam.com 9
CONFIDENTIALCONFIDENTIAL
Open-source Quantitative Trading
www.junzhiam.com 10
Name Github Star Language Type
Zipline 5532 Python Backtesting
TuShare 3905 Python Data
vn.py 3884 Python Trading
RQAlpha 1637 Python Backtesting
finmarketpy 1602 Python Backtesting
pyalgotrade 1488 Python Backtesting
High-Frequency-Trading-Model-with-IB 1192 Python Strategy
Lean 1053 C# Trading
StockSharp 1051 C# Trading
backtrader 826 Python Backtesting
Date:2017-09-22
CONFIDENTIALCONFIDENTIAL
 Overview of Chinese Market
 Data Management - TuShare
 Strategy Development
 Automated Trading - vn.py
 Summary and QA
www.junzhiam.com 11
CONFIDENTIALCONFIDENTIAL
Data Collection
Market
Data
Daily Bar
(OHLC)
Intraday Bar
(OHLC)
Tick (Bid/Ask)
Reference
Data
Fundamental
Data
(PE/Growth)
Economic
Data
(GDP/CPI)
Alternative
Data
www.junzhiam.com 12
CONFIDENTIALCONFIDENTIAL
Choice of Database
Database Features Suitable For
HDF5
• Fast reading performance
• Hierachical structure
• Data compression
High Frequency Market Data
(Tick, Minute Bar)
MongoDB
• Document-based data
model, similar to Python
dictionaries
• Deep query-ability
• Horizontal scalability
Low Frequency Market Data
(Daily Bar)
MySQL
• Relationship database
• ACID compliance
Reference Data
www.junzhiam.com 13
CONFIDENTIALCONFIDENTIAL
TuShare Overview
www.junzhiam.com 14
 Open-source financial data tool for Python created by Jimmy
Liu (my colleague)
 100k+ community users, including over 500 financial
institutions (August 2017)
 Free data feeds including: Sina Finance, Tenccent Finance,
Shanghai Stock Exchange, etc.
 Commercial data feeds including: Datayes, JZData, etc.
CONFIDENTIALCONFIDENTIAL
TuShare Features
www.junzhiam.com 15
• Market Data/Fundamental Data/Economic
DataData Available
• Pandas DataFrame/SeriesData Structure
• MySQL/MongoDB/HDF5/CSV
Database
Supported
• Well documented/easy to find support.
Active
Community
CONFIDENTIALCONFIDENTIAL
TuShare Data
Data Type Data Example
Market Data
• Equity Tick
• Equity Original/Forward Adjusted Daily Bar
• Equity Intraday Bar
• Index Snapshot
Fundamental Data
• Equity Industry/Concept/Area
• PE/PB Ratio
• Total/Liquid Assets
• Growth Rate
Economic Data
• GDP/CPI
• Depsit Reserve Ratio
• Shibor Rate
• Margin Trading Statistics
www.junzhiam.com 16
CONFIDENTIALCONFIDENTIAL
TuShare Example
www.junzhiam.com 17
CONFIDENTIALCONFIDENTIAL
 Overview of Chinese Market
 Data Management - TuShare
 Strategy Development
 Automated Trading - vn.py
 Summary and QA
www.junzhiam.com 18
CONFIDENTIALCONFIDENTIAL
Jupyter Notebook
 Powerful IPython shell, perfect tool for strategy development
 Rapid prototyping and easy managing data-related projects
 Can be used as front-end for automated trading system
www.junzhiam.com 19
CONFIDENTIALCONFIDENTIAL
Strategy Development
www.junzhiam.com 20
Data Analysis
• Test for
auto-
correlation
• Test for
Stationary
Time Series
• Plot return
distribution
Strategy
Backtesting
• Array-based
backtesting
• Event-driven
backtesting
• Result
anlyisis
Parameter
Optimization
• Exhaustive
optimization
• Genetic
optimization
• Walk-
Forward
Testing
Various backtesting tools similar in concept to Zipline
CONFIDENTIALCONFIDENTIAL
 Overview of Chinese Market
 Data Management - TuShare
 Strategy Development
 Automated Trading - vn.py
 Summary and QA
www.junzhiam.com 21
CONFIDENTIALCONFIDENTIAL
Automated Trading
www.junzhiam.com 22
• For receiving latest market price
update
Realtime Data
Feed
• For sending orders and receiving
execution information
Broker
Connection
• For monitoring order status and
position pnl
Order and
Position Tracking
• For managing strategy life cycle:
initialization, start, stop, etc.Strategy Engine
CONFIDENTIALCONFIDENTIAL
vn.py Project
 Open-source quantitative trading framework created by
Xiaoyou Chen (me)
 Developed by traders, for traders.
 Targeting the problem that most vendors and brokers have no
Python support for automated trading
 Python and uses C++ for low-layer and performance sensitive
infrastructure.
www.junzhiam.com 23
CONFIDENTIALCONFIDENTIAL
Architecture of VnTrader
www.junzhiam.com 24
Main Engine
Event Engine
Order Router
Risk Manager
Data Engine
MongoDB
Database
Data Feeds
• CTP
• FEMAS
• XTP
• SGIT
• IB
• OANDA
• WIND
Broker
Connection
• Equity
• Futures
• Options
• Precious Metal
• Forex
• Cryptocurrency
Management Apps
• GUI Client
• Web Client
• RPC Service
Strategy Apps
• CTA Strategy
• Spread Trading
• Volatility Trading
• Electronic Eye
• Algo Execution
CONFIDENTIALCONFIDENTIAL
Screenshot
www.junzhiam.com 25
CONFIDENTIALCONFIDENTIAL
Event-Driven Backtesting and Trading
 Event-driven
backtesting helps to
avoid lookahead bias
 Same strategy code
for backtesting and live
trading.
www.junzhiam.com 26
CONFIDENTIALCONFIDENTIAL
EventEngine and Complex Trading Strategy
 Institutional investors and professional traders can easily
develop complex trading strategies with the Event Engine(EE),
and automatically route their orders to the most desired
destinations:
1. A strategy register event handlers with EE
2. EE receives event update from data feed, broker connection or other
strategies.
3. EE notifies the strategy about new events through handler
4. After doing some trading logic calculations with new data, the
strategy place or cancel orders
5. Strategy can be an algo instance, a GUI front-end or any other
modules
www.junzhiam.com 27
CONFIDENTIALCONFIDENTIAL
Complex Strategy Demo – Electronic Eye
www.junzhiam.com 28
CONFIDENTIALCONFIDENTIAL
 Overview of Chinese Market
 Data Management - TuShare
 Strategy Development
 Automated Trading - vn.py
 Summary and QA
www.junzhiam.com 29
CONFIDENTIALCONFIDENTIAL
Summary
 Chinese market is becoming increasingly attractive for quant
trading.
 Global quant hedge funds obtain fund management license in
China (Bridgewater and Man Group).
 With open-source tools in Python, running a quant trading
business in China is getting much easier now.
www.junzhiam.com 30
CONFIDENTIALCONFIDENTIAL
Q & A
www.junzhiam.com 31
WeChat:
Email: xchen@junzhiam.com

More Related Content

What's hot

Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...Quantopian
 
What we learned from running a quant crypto hedge fund
What we learned from running a quant crypto hedge fundWhat we learned from running a quant crypto hedge fund
What we learned from running a quant crypto hedge fundYingdan (Mora) Liang
 
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle..."Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...Quantopian
 
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016Quantopian
 
"Alpha from Alternative Data" by Emmett Kilduff, Founder and CEO of Eagle Alpha
"Alpha from Alternative Data" by Emmett Kilduff,  Founder and CEO of Eagle Alpha"Alpha from Alternative Data" by Emmett Kilduff,  Founder and CEO of Eagle Alpha
"Alpha from Alternative Data" by Emmett Kilduff, Founder and CEO of Eagle AlphaQuantopian
 
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe..."Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...Quantopian
 
Automated Selection and Robustness for Systematic Trading Strategies by Dr. T...
Automated Selection and Robustness for Systematic Trading Strategies by Dr. T...Automated Selection and Robustness for Systematic Trading Strategies by Dr. T...
Automated Selection and Robustness for Systematic Trading Strategies by Dr. T...Quantopian
 
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ..."Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...Quantopian
 
Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016Quantopian
 
"A Framework for Developing Trading Models Based on Machine Learning" by Kris...
"A Framework for Developing Trading Models Based on Machine Learning" by Kris..."A Framework for Developing Trading Models Based on Machine Learning" by Kris...
"A Framework for Developing Trading Models Based on Machine Learning" by Kris...Quantopian
 
Paradigms of trading strategies formulation
Paradigms of trading strategies formulationParadigms of trading strategies formulation
Paradigms of trading strategies formulationQuantInsti
 
Dual Momentum Investing by Gary Antonacci QuantCon 2016
Dual Momentum Investing by Gary Antonacci QuantCon 2016Dual Momentum Investing by Gary Antonacci QuantCon 2016
Dual Momentum Investing by Gary Antonacci QuantCon 2016Quantopian
 
Algorithmic Trading
Algorithmic TradingAlgorithmic Trading
Algorithmic TradingAlice Chan
 
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016Quantopian
 
Combining the Best Stock Selection Factors by Patrick O'Shaughnessy at QuantC...
Combining the Best Stock Selection Factors by Patrick O'Shaughnessy at QuantC...Combining the Best Stock Selection Factors by Patrick O'Shaughnessy at QuantC...
Combining the Best Stock Selection Factors by Patrick O'Shaughnessy at QuantC...Quantopian
 
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ..."Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...Quantopian
 
Webinar Mean Reversion Strategies Presentation
Webinar Mean Reversion Strategies PresentationWebinar Mean Reversion Strategies Presentation
Webinar Mean Reversion Strategies PresentationQuantInsti
 
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo..."Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...Quantopian
 

What's hot (20)

Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
 
What we learned from running a quant crypto hedge fund
What we learned from running a quant crypto hedge fundWhat we learned from running a quant crypto hedge fund
What we learned from running a quant crypto hedge fund
 
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle..."Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...
 
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
 
"Alpha from Alternative Data" by Emmett Kilduff, Founder and CEO of Eagle Alpha
"Alpha from Alternative Data" by Emmett Kilduff,  Founder and CEO of Eagle Alpha"Alpha from Alternative Data" by Emmett Kilduff,  Founder and CEO of Eagle Alpha
"Alpha from Alternative Data" by Emmett Kilduff, Founder and CEO of Eagle Alpha
 
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe..."Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...
 
Automated Selection and Robustness for Systematic Trading Strategies by Dr. T...
Automated Selection and Robustness for Systematic Trading Strategies by Dr. T...Automated Selection and Robustness for Systematic Trading Strategies by Dr. T...
Automated Selection and Robustness for Systematic Trading Strategies by Dr. T...
 
Algorithmic Trading
Algorithmic TradingAlgorithmic Trading
Algorithmic Trading
 
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ..."Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...
 
Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
 
"A Framework for Developing Trading Models Based on Machine Learning" by Kris...
"A Framework for Developing Trading Models Based on Machine Learning" by Kris..."A Framework for Developing Trading Models Based on Machine Learning" by Kris...
"A Framework for Developing Trading Models Based on Machine Learning" by Kris...
 
Paradigms of trading strategies formulation
Paradigms of trading strategies formulationParadigms of trading strategies formulation
Paradigms of trading strategies formulation
 
Dual Momentum Investing by Gary Antonacci QuantCon 2016
Dual Momentum Investing by Gary Antonacci QuantCon 2016Dual Momentum Investing by Gary Antonacci QuantCon 2016
Dual Momentum Investing by Gary Antonacci QuantCon 2016
 
Algorithmic Trading
Algorithmic TradingAlgorithmic Trading
Algorithmic Trading
 
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
 
Combining the Best Stock Selection Factors by Patrick O'Shaughnessy at QuantC...
Combining the Best Stock Selection Factors by Patrick O'Shaughnessy at QuantC...Combining the Best Stock Selection Factors by Patrick O'Shaughnessy at QuantC...
Combining the Best Stock Selection Factors by Patrick O'Shaughnessy at QuantC...
 
Algorithmic trading
Algorithmic tradingAlgorithmic trading
Algorithmic trading
 
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ..."Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...
 
Webinar Mean Reversion Strategies Presentation
Webinar Mean Reversion Strategies PresentationWebinar Mean Reversion Strategies Presentation
Webinar Mean Reversion Strategies Presentation
 
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo..."Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...
 

Similar to "How to Run a Quantitative Trading Business in China with Python" by Xiaoyou Chen, Head of Option Trading at Shanghai Junzhi Asset Management Ltd.

Python in the Financial Industry The universal tool for end-to-end developme...
Python in the Financial Industry  The universal tool for end-to-end developme...Python in the Financial Industry  The universal tool for end-to-end developme...
Python in the Financial Industry The universal tool for end-to-end developme...PyData
 
Sample - EFutures-financial-solutions
Sample - EFutures-financial-solutionsSample - EFutures-financial-solutions
Sample - EFutures-financial-solutionsNsid123456
 
Flink Forward Berlin 2017 Keynote: Ferd Scheepers - Taking away customer fric...
Flink Forward Berlin 2017 Keynote: Ferd Scheepers - Taking away customer fric...Flink Forward Berlin 2017 Keynote: Ferd Scheepers - Taking away customer fric...
Flink Forward Berlin 2017 Keynote: Ferd Scheepers - Taking away customer fric...Flink Forward
 
EXTENT-2015: LSEG Technology Overview
EXTENT-2015: LSEG Technology Overview EXTENT-2015: LSEG Technology Overview
EXTENT-2015: LSEG Technology Overview Iosif Itkin
 
Redefining Perspectives - June 2015
Redefining Perspectives - June 2015Redefining Perspectives - June 2015
Redefining Perspectives - June 2015sapientindia
 
Introduction to Blockchain and BitCoin New Business Opportunties
Introduction to Blockchain and BitCoin New Business OpportuntiesIntroduction to Blockchain and BitCoin New Business Opportunties
Introduction to Blockchain and BitCoin New Business OpportuntiesValue Amplify Consulting
 
Binance Clone Script - A Comprehensive Guide For Business seekers.pdf
Binance Clone Script - A Comprehensive Guide For Business seekers.pdfBinance Clone Script - A Comprehensive Guide For Business seekers.pdf
Binance Clone Script - A Comprehensive Guide For Business seekers.pdfJamieelucas
 
EXTENT-2017: MiFID II and Impacts on Trading Workflow
EXTENT-2017: MiFID II and Impacts on Trading WorkflowEXTENT-2017: MiFID II and Impacts on Trading Workflow
EXTENT-2017: MiFID II and Impacts on Trading WorkflowIosif Itkin
 
WSO2- OSC Korea - Accelerating Digital Businesses with APIs
WSO2- OSC Korea - Accelerating Digital Businesses with APIsWSO2- OSC Korea - Accelerating Digital Businesses with APIs
WSO2- OSC Korea - Accelerating Digital Businesses with APIsWSO2
 
Fintech workshop Part I - Law Society of Hong Kong - Xccelerate
Fintech workshop Part I - Law Society of Hong Kong - XccelerateFintech workshop Part I - Law Society of Hong Kong - Xccelerate
Fintech workshop Part I - Law Society of Hong Kong - XccelerateHenrique Centieiro
 
EXTENT-2015: Prognoz Market Surveillance
EXTENT-2015: Prognoz  Market SurveillanceEXTENT-2015: Prognoz  Market Surveillance
EXTENT-2015: Prognoz Market SurveillanceIosif Itkin
 
Business Intelligence for Logistics and Freight Forwarders
Business Intelligence for Logistics and Freight ForwardersBusiness Intelligence for Logistics and Freight Forwarders
Business Intelligence for Logistics and Freight ForwardersSmarten Augmented Analytics
 
In-Memory Computing Webcast. Market Predictions 2017
In-Memory Computing Webcast. Market Predictions 2017In-Memory Computing Webcast. Market Predictions 2017
In-Memory Computing Webcast. Market Predictions 2017SingleStore
 
TradeTech Architecture 2010
TradeTech Architecture 2010TradeTech Architecture 2010
TradeTech Architecture 2010Sara Mueller
 
Real-time Streaming Analytics: Business Value, Use Cases and Architectural Co...
Real-time Streaming Analytics: Business Value, Use Cases and Architectural Co...Real-time Streaming Analytics: Business Value, Use Cases and Architectural Co...
Real-time Streaming Analytics: Business Value, Use Cases and Architectural Co...Impetus Technologies
 
cybersecurity regulation for thai capital market ดร.กำพล ศรธนะรัตน์ ผู้อำนวย...
cybersecurity regulation for thai capital market  ดร.กำพล ศรธนะรัตน์ ผู้อำนวย...cybersecurity regulation for thai capital market  ดร.กำพล ศรธนะรัตน์ ผู้อำนวย...
cybersecurity regulation for thai capital market ดร.กำพล ศรธนะรัตน์ ผู้อำนวย...BAINIDA
 
Introduction to Quantitative Trading - Investment Management Club of Yale Uni...
Introduction to Quantitative Trading - Investment Management Club of Yale Uni...Introduction to Quantitative Trading - Investment Management Club of Yale Uni...
Introduction to Quantitative Trading - Investment Management Club of Yale Uni...QuantInsti
 
INTERFACE, by apidays - The UK Open Banking Story
INTERFACE, by apidays -  The UK Open Banking StoryINTERFACE, by apidays -  The UK Open Banking Story
INTERFACE, by apidays - The UK Open Banking Storyapidays
 
Fast Data at ING – the why, what and how of the streaming analytics platform ...
Fast Data at ING – the why, what and how of the streaming analytics platform ...Fast Data at ING – the why, what and how of the streaming analytics platform ...
Fast Data at ING – the why, what and how of the streaming analytics platform ...Bas Geerdink
 
Technology Edge in Algo Trading: Traditional Vs Automated Trading System Arch...
Technology Edge in Algo Trading: Traditional Vs Automated Trading System Arch...Technology Edge in Algo Trading: Traditional Vs Automated Trading System Arch...
Technology Edge in Algo Trading: Traditional Vs Automated Trading System Arch...QuantInsti
 

Similar to "How to Run a Quantitative Trading Business in China with Python" by Xiaoyou Chen, Head of Option Trading at Shanghai Junzhi Asset Management Ltd. (20)

Python in the Financial Industry The universal tool for end-to-end developme...
Python in the Financial Industry  The universal tool for end-to-end developme...Python in the Financial Industry  The universal tool for end-to-end developme...
Python in the Financial Industry The universal tool for end-to-end developme...
 
Sample - EFutures-financial-solutions
Sample - EFutures-financial-solutionsSample - EFutures-financial-solutions
Sample - EFutures-financial-solutions
 
Flink Forward Berlin 2017 Keynote: Ferd Scheepers - Taking away customer fric...
Flink Forward Berlin 2017 Keynote: Ferd Scheepers - Taking away customer fric...Flink Forward Berlin 2017 Keynote: Ferd Scheepers - Taking away customer fric...
Flink Forward Berlin 2017 Keynote: Ferd Scheepers - Taking away customer fric...
 
EXTENT-2015: LSEG Technology Overview
EXTENT-2015: LSEG Technology Overview EXTENT-2015: LSEG Technology Overview
EXTENT-2015: LSEG Technology Overview
 
Redefining Perspectives - June 2015
Redefining Perspectives - June 2015Redefining Perspectives - June 2015
Redefining Perspectives - June 2015
 
Introduction to Blockchain and BitCoin New Business Opportunties
Introduction to Blockchain and BitCoin New Business OpportuntiesIntroduction to Blockchain and BitCoin New Business Opportunties
Introduction to Blockchain and BitCoin New Business Opportunties
 
Binance Clone Script - A Comprehensive Guide For Business seekers.pdf
Binance Clone Script - A Comprehensive Guide For Business seekers.pdfBinance Clone Script - A Comprehensive Guide For Business seekers.pdf
Binance Clone Script - A Comprehensive Guide For Business seekers.pdf
 
EXTENT-2017: MiFID II and Impacts on Trading Workflow
EXTENT-2017: MiFID II and Impacts on Trading WorkflowEXTENT-2017: MiFID II and Impacts on Trading Workflow
EXTENT-2017: MiFID II and Impacts on Trading Workflow
 
WSO2- OSC Korea - Accelerating Digital Businesses with APIs
WSO2- OSC Korea - Accelerating Digital Businesses with APIsWSO2- OSC Korea - Accelerating Digital Businesses with APIs
WSO2- OSC Korea - Accelerating Digital Businesses with APIs
 
Fintech workshop Part I - Law Society of Hong Kong - Xccelerate
Fintech workshop Part I - Law Society of Hong Kong - XccelerateFintech workshop Part I - Law Society of Hong Kong - Xccelerate
Fintech workshop Part I - Law Society of Hong Kong - Xccelerate
 
EXTENT-2015: Prognoz Market Surveillance
EXTENT-2015: Prognoz  Market SurveillanceEXTENT-2015: Prognoz  Market Surveillance
EXTENT-2015: Prognoz Market Surveillance
 
Business Intelligence for Logistics and Freight Forwarders
Business Intelligence for Logistics and Freight ForwardersBusiness Intelligence for Logistics and Freight Forwarders
Business Intelligence for Logistics and Freight Forwarders
 
In-Memory Computing Webcast. Market Predictions 2017
In-Memory Computing Webcast. Market Predictions 2017In-Memory Computing Webcast. Market Predictions 2017
In-Memory Computing Webcast. Market Predictions 2017
 
TradeTech Architecture 2010
TradeTech Architecture 2010TradeTech Architecture 2010
TradeTech Architecture 2010
 
Real-time Streaming Analytics: Business Value, Use Cases and Architectural Co...
Real-time Streaming Analytics: Business Value, Use Cases and Architectural Co...Real-time Streaming Analytics: Business Value, Use Cases and Architectural Co...
Real-time Streaming Analytics: Business Value, Use Cases and Architectural Co...
 
cybersecurity regulation for thai capital market ดร.กำพล ศรธนะรัตน์ ผู้อำนวย...
cybersecurity regulation for thai capital market  ดร.กำพล ศรธนะรัตน์ ผู้อำนวย...cybersecurity regulation for thai capital market  ดร.กำพล ศรธนะรัตน์ ผู้อำนวย...
cybersecurity regulation for thai capital market ดร.กำพล ศรธนะรัตน์ ผู้อำนวย...
 
Introduction to Quantitative Trading - Investment Management Club of Yale Uni...
Introduction to Quantitative Trading - Investment Management Club of Yale Uni...Introduction to Quantitative Trading - Investment Management Club of Yale Uni...
Introduction to Quantitative Trading - Investment Management Club of Yale Uni...
 
INTERFACE, by apidays - The UK Open Banking Story
INTERFACE, by apidays -  The UK Open Banking StoryINTERFACE, by apidays -  The UK Open Banking Story
INTERFACE, by apidays - The UK Open Banking Story
 
Fast Data at ING – the why, what and how of the streaming analytics platform ...
Fast Data at ING – the why, what and how of the streaming analytics platform ...Fast Data at ING – the why, what and how of the streaming analytics platform ...
Fast Data at ING – the why, what and how of the streaming analytics platform ...
 
Technology Edge in Algo Trading: Traditional Vs Automated Trading System Arch...
Technology Edge in Algo Trading: Traditional Vs Automated Trading System Arch...Technology Edge in Algo Trading: Traditional Vs Automated Trading System Arch...
Technology Edge in Algo Trading: Traditional Vs Automated Trading System Arch...
 

More from Quantopian

Being open (source) in the traditionally secretive field of quant finance.
Being open (source) in the traditionally secretive field of quant finance.Being open (source) in the traditionally secretive field of quant finance.
Being open (source) in the traditionally secretive field of quant finance.Quantopian
 
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018Quantopian
 
Tearsheet feedback webinar 10.10.18
Tearsheet feedback webinar 10.10.18Tearsheet feedback webinar 10.10.18
Tearsheet feedback webinar 10.10.18Quantopian
 
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,..."Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...Quantopian
 
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese..."Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...Quantopian
 
"Quant Trading for a Living – Lessons from a Life in the Trenches" by Andreas...
"Quant Trading for a Living – Lessons from a Life in the Trenches" by Andreas..."Quant Trading for a Living – Lessons from a Life in the Trenches" by Andreas...
"Quant Trading for a Living – Lessons from a Life in the Trenches" by Andreas...Quantopian
 
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...Quantopian
 
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...Quantopian
 
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin..."Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...Quantopian
 
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes..."Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...Quantopian
 
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos..."Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...Quantopian
 
"From Insufficient Economic data to Economic Big Data – How Trade Data is red...
"From Insufficient Economic data to Economic Big Data – How Trade Data is red..."From Insufficient Economic data to Economic Big Data – How Trade Data is red...
"From Insufficient Economic data to Economic Big Data – How Trade Data is red...Quantopian
 
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael..."Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...Quantopian
 
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C..."Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...Quantopian
 
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ..."Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...Quantopian
 
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author..."Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...Quantopian
 
"From Trading Strategy to Becoming an Industry Professional – How to Break in...
"From Trading Strategy to Becoming an Industry Professional – How to Break in..."From Trading Strategy to Becoming an Industry Professional – How to Break in...
"From Trading Strategy to Becoming an Industry Professional – How to Break in...Quantopian
 
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin..."Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...Quantopian
 
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr..."Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...Quantopian
 
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen..."On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...Quantopian
 

More from Quantopian (20)

Being open (source) in the traditionally secretive field of quant finance.
Being open (source) in the traditionally secretive field of quant finance.Being open (source) in the traditionally secretive field of quant finance.
Being open (source) in the traditionally secretive field of quant finance.
 
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
 
Tearsheet feedback webinar 10.10.18
Tearsheet feedback webinar 10.10.18Tearsheet feedback webinar 10.10.18
Tearsheet feedback webinar 10.10.18
 
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,..."Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
 
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese..."Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...
 
"Quant Trading for a Living – Lessons from a Life in the Trenches" by Andreas...
"Quant Trading for a Living – Lessons from a Life in the Trenches" by Andreas..."Quant Trading for a Living – Lessons from a Life in the Trenches" by Andreas...
"Quant Trading for a Living – Lessons from a Life in the Trenches" by Andreas...
 
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...
 
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...
 
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin..."Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...
 
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes..."Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
 
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos..."Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...
 
"From Insufficient Economic data to Economic Big Data – How Trade Data is red...
"From Insufficient Economic data to Economic Big Data – How Trade Data is red..."From Insufficient Economic data to Economic Big Data – How Trade Data is red...
"From Insufficient Economic data to Economic Big Data – How Trade Data is red...
 
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael..."Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...
 
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C..."Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...
 
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ..."Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...
 
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author..."Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...
 
"From Trading Strategy to Becoming an Industry Professional – How to Break in...
"From Trading Strategy to Becoming an Industry Professional – How to Break in..."From Trading Strategy to Becoming an Industry Professional – How to Break in...
"From Trading Strategy to Becoming an Industry Professional – How to Break in...
 
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin..."Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...
 
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr..."Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
 
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen..."On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...
 

Recently uploaded

VIP Call Girls Service Dilsukhnagar Hyderabad Call +91-8250192130
VIP Call Girls Service Dilsukhnagar Hyderabad Call +91-8250192130VIP Call Girls Service Dilsukhnagar Hyderabad Call +91-8250192130
VIP Call Girls Service Dilsukhnagar Hyderabad Call +91-8250192130Suhani Kapoor
 
Andheri Call Girls In 9825968104 Mumbai Hot Models
Andheri Call Girls In 9825968104 Mumbai Hot ModelsAndheri Call Girls In 9825968104 Mumbai Hot Models
Andheri Call Girls In 9825968104 Mumbai Hot Modelshematsharma006
 
Quarter 4- Module 3 Principles of Marketing
Quarter 4- Module 3 Principles of MarketingQuarter 4- Module 3 Principles of Marketing
Quarter 4- Module 3 Principles of MarketingMaristelaRamos12
 
The Economic History of the U.S. Lecture 18.pdf
The Economic History of the U.S. Lecture 18.pdfThe Economic History of the U.S. Lecture 18.pdf
The Economic History of the U.S. Lecture 18.pdfGale Pooley
 
Log your LOA pain with Pension Lab's brilliant campaign
Log your LOA pain with Pension Lab's brilliant campaignLog your LOA pain with Pension Lab's brilliant campaign
Log your LOA pain with Pension Lab's brilliant campaignHenry Tapper
 
Vip B Aizawl Call Girls #9907093804 Contact Number Escorts Service Aizawl
Vip B Aizawl Call Girls #9907093804 Contact Number Escorts Service AizawlVip B Aizawl Call Girls #9907093804 Contact Number Escorts Service Aizawl
Vip B Aizawl Call Girls #9907093804 Contact Number Escorts Service Aizawlmakika9823
 
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Stock Market Brief Deck for 4/24/24 .pdf
Stock Market Brief Deck for 4/24/24 .pdfStock Market Brief Deck for 4/24/24 .pdf
Stock Market Brief Deck for 4/24/24 .pdfMichael Silva
 
20240429 Calibre April 2024 Investor Presentation.pdf
20240429 Calibre April 2024 Investor Presentation.pdf20240429 Calibre April 2024 Investor Presentation.pdf
20240429 Calibre April 2024 Investor Presentation.pdfAdnet Communications
 
The Economic History of the U.S. Lecture 17.pdf
The Economic History of the U.S. Lecture 17.pdfThe Economic History of the U.S. Lecture 17.pdf
The Economic History of the U.S. Lecture 17.pdfGale Pooley
 
Instant Issue Debit Cards - High School Spirit
Instant Issue Debit Cards - High School SpiritInstant Issue Debit Cards - High School Spirit
Instant Issue Debit Cards - High School Spiritegoetzinger
 
Monthly Market Risk Update: April 2024 [SlideShare]
Monthly Market Risk Update: April 2024 [SlideShare]Monthly Market Risk Update: April 2024 [SlideShare]
Monthly Market Risk Update: April 2024 [SlideShare]Commonwealth
 
The Economic History of the U.S. Lecture 19.pdf
The Economic History of the U.S. Lecture 19.pdfThe Economic History of the U.S. Lecture 19.pdf
The Economic History of the U.S. Lecture 19.pdfGale Pooley
 
fca-bsps-decision-letter-redacted (1).pdf
fca-bsps-decision-letter-redacted (1).pdffca-bsps-decision-letter-redacted (1).pdf
fca-bsps-decision-letter-redacted (1).pdfHenry Tapper
 
Call US 📞 9892124323 ✅ Kurla Call Girls In Kurla ( Mumbai ) secure service
Call US 📞 9892124323 ✅ Kurla Call Girls In Kurla ( Mumbai ) secure serviceCall US 📞 9892124323 ✅ Kurla Call Girls In Kurla ( Mumbai ) secure service
Call US 📞 9892124323 ✅ Kurla Call Girls In Kurla ( Mumbai ) secure servicePooja Nehwal
 
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptxFinTech Belgium
 
Dividend Policy and Dividend Decision Theories.pptx
Dividend Policy and Dividend Decision Theories.pptxDividend Policy and Dividend Decision Theories.pptx
Dividend Policy and Dividend Decision Theories.pptxanshikagoel52
 
VIP Call Girls Thane Sia 8617697112 Independent Escort Service Thane
VIP Call Girls Thane Sia 8617697112 Independent Escort Service ThaneVIP Call Girls Thane Sia 8617697112 Independent Escort Service Thane
VIP Call Girls Thane Sia 8617697112 Independent Escort Service ThaneCall girls in Ahmedabad High profile
 
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 

Recently uploaded (20)

VIP Call Girls Service Dilsukhnagar Hyderabad Call +91-8250192130
VIP Call Girls Service Dilsukhnagar Hyderabad Call +91-8250192130VIP Call Girls Service Dilsukhnagar Hyderabad Call +91-8250192130
VIP Call Girls Service Dilsukhnagar Hyderabad Call +91-8250192130
 
Andheri Call Girls In 9825968104 Mumbai Hot Models
Andheri Call Girls In 9825968104 Mumbai Hot ModelsAndheri Call Girls In 9825968104 Mumbai Hot Models
Andheri Call Girls In 9825968104 Mumbai Hot Models
 
Quarter 4- Module 3 Principles of Marketing
Quarter 4- Module 3 Principles of MarketingQuarter 4- Module 3 Principles of Marketing
Quarter 4- Module 3 Principles of Marketing
 
The Economic History of the U.S. Lecture 18.pdf
The Economic History of the U.S. Lecture 18.pdfThe Economic History of the U.S. Lecture 18.pdf
The Economic History of the U.S. Lecture 18.pdf
 
Log your LOA pain with Pension Lab's brilliant campaign
Log your LOA pain with Pension Lab's brilliant campaignLog your LOA pain with Pension Lab's brilliant campaign
Log your LOA pain with Pension Lab's brilliant campaign
 
Vip B Aizawl Call Girls #9907093804 Contact Number Escorts Service Aizawl
Vip B Aizawl Call Girls #9907093804 Contact Number Escorts Service AizawlVip B Aizawl Call Girls #9907093804 Contact Number Escorts Service Aizawl
Vip B Aizawl Call Girls #9907093804 Contact Number Escorts Service Aizawl
 
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escorts
 
Stock Market Brief Deck for 4/24/24 .pdf
Stock Market Brief Deck for 4/24/24 .pdfStock Market Brief Deck for 4/24/24 .pdf
Stock Market Brief Deck for 4/24/24 .pdf
 
Veritas Interim Report 1 January–31 March 2024
Veritas Interim Report 1 January–31 March 2024Veritas Interim Report 1 January–31 March 2024
Veritas Interim Report 1 January–31 March 2024
 
20240429 Calibre April 2024 Investor Presentation.pdf
20240429 Calibre April 2024 Investor Presentation.pdf20240429 Calibre April 2024 Investor Presentation.pdf
20240429 Calibre April 2024 Investor Presentation.pdf
 
The Economic History of the U.S. Lecture 17.pdf
The Economic History of the U.S. Lecture 17.pdfThe Economic History of the U.S. Lecture 17.pdf
The Economic History of the U.S. Lecture 17.pdf
 
Instant Issue Debit Cards - High School Spirit
Instant Issue Debit Cards - High School SpiritInstant Issue Debit Cards - High School Spirit
Instant Issue Debit Cards - High School Spirit
 
Monthly Market Risk Update: April 2024 [SlideShare]
Monthly Market Risk Update: April 2024 [SlideShare]Monthly Market Risk Update: April 2024 [SlideShare]
Monthly Market Risk Update: April 2024 [SlideShare]
 
The Economic History of the U.S. Lecture 19.pdf
The Economic History of the U.S. Lecture 19.pdfThe Economic History of the U.S. Lecture 19.pdf
The Economic History of the U.S. Lecture 19.pdf
 
fca-bsps-decision-letter-redacted (1).pdf
fca-bsps-decision-letter-redacted (1).pdffca-bsps-decision-letter-redacted (1).pdf
fca-bsps-decision-letter-redacted (1).pdf
 
Call US 📞 9892124323 ✅ Kurla Call Girls In Kurla ( Mumbai ) secure service
Call US 📞 9892124323 ✅ Kurla Call Girls In Kurla ( Mumbai ) secure serviceCall US 📞 9892124323 ✅ Kurla Call Girls In Kurla ( Mumbai ) secure service
Call US 📞 9892124323 ✅ Kurla Call Girls In Kurla ( Mumbai ) secure service
 
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx
 
Dividend Policy and Dividend Decision Theories.pptx
Dividend Policy and Dividend Decision Theories.pptxDividend Policy and Dividend Decision Theories.pptx
Dividend Policy and Dividend Decision Theories.pptx
 
VIP Call Girls Thane Sia 8617697112 Independent Escort Service Thane
VIP Call Girls Thane Sia 8617697112 Independent Escort Service ThaneVIP Call Girls Thane Sia 8617697112 Independent Escort Service Thane
VIP Call Girls Thane Sia 8617697112 Independent Escort Service Thane
 
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 

"How to Run a Quantitative Trading Business in China with Python" by Xiaoyou Chen, Head of Option Trading at Shanghai Junzhi Asset Management Ltd.

  • 1. CONFIDENTIAL How to run a quantitative trading business in China using Python QuantCon Singapore 2017-09-29
  • 2. CONFIDENTIALCONFIDENTIAL  Overview of Chinese Market  Data Management - TuShare  Strategy Development  Automated Trading - vn.py  Summary and QA www.junzhiam.com 3
  • 3. CONFIDENTIALCONFIDENTIAL About Me  My name is Xiaoyou Chen.  Head of Option Trading at Junzhi Asset Management (均直 资管)  Creator of vn.py project www.junzhiam.com 4
  • 4. CONFIDENTIALCONFIDENTIAL About Junzhi Asset Management  Multi-strategy Quant Fund  Equity Long-Short  Trend Following  Statistical Arbitrage  Volatility Trading  Fixed Income Arbitrage  Several billion AUM in CNY  In-house Developed Trading Software www.junzhiam.com 5
  • 5. CONFIDENTIALCONFIDENTIAL Chinese Financial Market Overview Market Overview Stock • Over 3300 stocks and 160 ETFs • World No.2 by Market Cap • World No.2 by Turnover Futures • 43 commodity, 3 equity index and 2 bond futures • World No. 2 by Turnover Options • 1 ETF option: SZ50 ETF • 2 commodity options: soybean meal, sugar www.junzhiam.com 6 Data from www.world-exchanges.org (August 2017): • Stock Market Cap: China $6.6 trillion vs US $29.7 trillion • Stock Monthly Turnover: China $1.78 trillion vs US $2.28 trillion • Commodity Monthly Turnover: China $1.23 trillion vs US $4.98 trillion
  • 6. CONFIDENTIALCONFIDENTIAL Market Features www.junzhiam.com 7  Exchange markets instead of dealer markets  Stocks only trading on one exchange, no ECN or dark pools  API available, with restrictions on stocks trading  Margin trading with leverage ratio < 2  Short selling available but difficult to find shares
  • 7. CONFIDENTIALCONFIDENTIAL Traditional vs New Methods for Quant Trading Automated Trading C++ Python Strategy Development Matlab/R Python Data Management SQL Python www.junzhiam.com 8
  • 8. CONFIDENTIALCONFIDENTIAL Python Advantages Easy to Learn Fast to Write Batteries Included Open-source www.junzhiam.com 9
  • 9. CONFIDENTIALCONFIDENTIAL Open-source Quantitative Trading www.junzhiam.com 10 Name Github Star Language Type Zipline 5532 Python Backtesting TuShare 3905 Python Data vn.py 3884 Python Trading RQAlpha 1637 Python Backtesting finmarketpy 1602 Python Backtesting pyalgotrade 1488 Python Backtesting High-Frequency-Trading-Model-with-IB 1192 Python Strategy Lean 1053 C# Trading StockSharp 1051 C# Trading backtrader 826 Python Backtesting Date:2017-09-22
  • 10. CONFIDENTIALCONFIDENTIAL  Overview of Chinese Market  Data Management - TuShare  Strategy Development  Automated Trading - vn.py  Summary and QA www.junzhiam.com 11
  • 11. CONFIDENTIALCONFIDENTIAL Data Collection Market Data Daily Bar (OHLC) Intraday Bar (OHLC) Tick (Bid/Ask) Reference Data Fundamental Data (PE/Growth) Economic Data (GDP/CPI) Alternative Data www.junzhiam.com 12
  • 12. CONFIDENTIALCONFIDENTIAL Choice of Database Database Features Suitable For HDF5 • Fast reading performance • Hierachical structure • Data compression High Frequency Market Data (Tick, Minute Bar) MongoDB • Document-based data model, similar to Python dictionaries • Deep query-ability • Horizontal scalability Low Frequency Market Data (Daily Bar) MySQL • Relationship database • ACID compliance Reference Data www.junzhiam.com 13
  • 13. CONFIDENTIALCONFIDENTIAL TuShare Overview www.junzhiam.com 14  Open-source financial data tool for Python created by Jimmy Liu (my colleague)  100k+ community users, including over 500 financial institutions (August 2017)  Free data feeds including: Sina Finance, Tenccent Finance, Shanghai Stock Exchange, etc.  Commercial data feeds including: Datayes, JZData, etc.
  • 14. CONFIDENTIALCONFIDENTIAL TuShare Features www.junzhiam.com 15 • Market Data/Fundamental Data/Economic DataData Available • Pandas DataFrame/SeriesData Structure • MySQL/MongoDB/HDF5/CSV Database Supported • Well documented/easy to find support. Active Community
  • 15. CONFIDENTIALCONFIDENTIAL TuShare Data Data Type Data Example Market Data • Equity Tick • Equity Original/Forward Adjusted Daily Bar • Equity Intraday Bar • Index Snapshot Fundamental Data • Equity Industry/Concept/Area • PE/PB Ratio • Total/Liquid Assets • Growth Rate Economic Data • GDP/CPI • Depsit Reserve Ratio • Shibor Rate • Margin Trading Statistics www.junzhiam.com 16
  • 17. CONFIDENTIALCONFIDENTIAL  Overview of Chinese Market  Data Management - TuShare  Strategy Development  Automated Trading - vn.py  Summary and QA www.junzhiam.com 18
  • 18. CONFIDENTIALCONFIDENTIAL Jupyter Notebook  Powerful IPython shell, perfect tool for strategy development  Rapid prototyping and easy managing data-related projects  Can be used as front-end for automated trading system www.junzhiam.com 19
  • 19. CONFIDENTIALCONFIDENTIAL Strategy Development www.junzhiam.com 20 Data Analysis • Test for auto- correlation • Test for Stationary Time Series • Plot return distribution Strategy Backtesting • Array-based backtesting • Event-driven backtesting • Result anlyisis Parameter Optimization • Exhaustive optimization • Genetic optimization • Walk- Forward Testing Various backtesting tools similar in concept to Zipline
  • 20. CONFIDENTIALCONFIDENTIAL  Overview of Chinese Market  Data Management - TuShare  Strategy Development  Automated Trading - vn.py  Summary and QA www.junzhiam.com 21
  • 21. CONFIDENTIALCONFIDENTIAL Automated Trading www.junzhiam.com 22 • For receiving latest market price update Realtime Data Feed • For sending orders and receiving execution information Broker Connection • For monitoring order status and position pnl Order and Position Tracking • For managing strategy life cycle: initialization, start, stop, etc.Strategy Engine
  • 22. CONFIDENTIALCONFIDENTIAL vn.py Project  Open-source quantitative trading framework created by Xiaoyou Chen (me)  Developed by traders, for traders.  Targeting the problem that most vendors and brokers have no Python support for automated trading  Python and uses C++ for low-layer and performance sensitive infrastructure. www.junzhiam.com 23
  • 23. CONFIDENTIALCONFIDENTIAL Architecture of VnTrader www.junzhiam.com 24 Main Engine Event Engine Order Router Risk Manager Data Engine MongoDB Database Data Feeds • CTP • FEMAS • XTP • SGIT • IB • OANDA • WIND Broker Connection • Equity • Futures • Options • Precious Metal • Forex • Cryptocurrency Management Apps • GUI Client • Web Client • RPC Service Strategy Apps • CTA Strategy • Spread Trading • Volatility Trading • Electronic Eye • Algo Execution
  • 25. CONFIDENTIALCONFIDENTIAL Event-Driven Backtesting and Trading  Event-driven backtesting helps to avoid lookahead bias  Same strategy code for backtesting and live trading. www.junzhiam.com 26
  • 26. CONFIDENTIALCONFIDENTIAL EventEngine and Complex Trading Strategy  Institutional investors and professional traders can easily develop complex trading strategies with the Event Engine(EE), and automatically route their orders to the most desired destinations: 1. A strategy register event handlers with EE 2. EE receives event update from data feed, broker connection or other strategies. 3. EE notifies the strategy about new events through handler 4. After doing some trading logic calculations with new data, the strategy place or cancel orders 5. Strategy can be an algo instance, a GUI front-end or any other modules www.junzhiam.com 27
  • 27. CONFIDENTIALCONFIDENTIAL Complex Strategy Demo – Electronic Eye www.junzhiam.com 28
  • 28. CONFIDENTIALCONFIDENTIAL  Overview of Chinese Market  Data Management - TuShare  Strategy Development  Automated Trading - vn.py  Summary and QA www.junzhiam.com 29
  • 29. CONFIDENTIALCONFIDENTIAL Summary  Chinese market is becoming increasingly attractive for quant trading.  Global quant hedge funds obtain fund management license in China (Bridgewater and Man Group).  With open-source tools in Python, running a quant trading business in China is getting much easier now. www.junzhiam.com 30
  • 30. CONFIDENTIALCONFIDENTIAL Q & A www.junzhiam.com 31 WeChat: Email: xchen@junzhiam.com

Editor's Notes

  1. My name is Xiaoyou Chen. Today I’m going to share some experience about …
  2. First, let’s try to get a brief overview of Chinese financial market.
  3. My name is … I am the head of … Our option trading strategies include volatility trading, low-latency arbitrage, portfolio hedging, cross market arbitrage and so on. I am also the creator of the vn.py project which is an open-source quantitative trading platform and we will talk about it later.
  4. Then, some background about my company. Junzhi Asset Management is a leading multi-strategy quantitative trading hedge fund based in Shanghai and we focus on Chinese local markets. We have trading strategies in almost all local financial markets except forex which is restricted in China. Our trading strategies include … We have several billions asset under management in Chinese yuan at the moment. In order to manage our very big portfolio, we also developed in-house tradng software for broker connection, oms, colocated algo server and so on.
  5. Here is the overview of Chinese financial market. For the stock market, we have … and is … For the futures … For the options …
  6. In China, most financial products are traded on exchanges rather than OTC. There is no ECN or dark pools in China, every stock can only be traded on the exchange where it’s listed. Block trading is also completed on exchanges. For futures and options trading, investors are free to use API for sending orders to brokers. However, for stock trading, most brokers do not provide API connection. And those who do provide API will ask for a minimum capital, normally 10 million CNY and also a background check. Margin trading is available through a service called RongZi. The maximum leverage ratio is 2 and the financing rate is normally is over 7% annually. Short selling is also available through a service called RongQuan. However, due to the low willingness of Chinese investors to lend their stock for short selling, it’s quite difficult to find those shares which you want to short.
  7. So, the three main steps in Quant Trading… Traditionally, we need different programming languages for different jobs. However, each of them has its own limitation. SQL is not optimized to handle time series data. As a commercial software, Matlab is not cheap to use. Even with years of experience, writing automated trading programme in C++ is not a easy job. Besides, most traders do not want to learn 3 programming languages. Luckily, now we can use just one language for completing all jobs, that is Python.
  8. Created by Guido van Rossum and first released in 1991, Python is an interpreted language with a design philosophy that emphasizes code readability. Using whitespace indentation to delimit code blocks rather than curly brackets or keywords), and a syntax that allows programmers to express concepts in fewer lines of code, Python is very easy to write. Python has a large standard library , as well as huge amounts of third-party libraries, offering a wide range of functionality. Python is also an open-source software, which makes it free to use and gives full control over the programming language if users want.
  9. Here is a table of some popular open-source quant trading projects on Github, ranked by Github stars First column… Second… Third… Last… 5 Backtesting framework, 3 trading system, 1 data tool and 1 strategy Demo. Among the 10 projects, 8 are written in Python, 2 in C#. So maybe we can say that Python is dominating the world of open-source quant trading projects.
  10. After getting the overview of the market, let’s have a look at the first step of Quant Trading, which is Data Management.
  11. In quantitative trading, data can be seperated into 2 group: market data and reference data. Market data refers to the trading price data of financial products. The most widely used is daily bar data, which is consisted of open/high/low/close price and trading volume and maybe open interest for futures and options. Daytrading traders or strategies require intraday data such as 1-minute bar or 5-minute bar. For high frequency strategies, tick data which includes market depth information is necessary. Reference data is more about those information that comes outside trading, such as fundamental data of equities, economic data of a country and also alternative data (railway freight volume).
  12. The most widely used open-source database solution for quant trading in China are HDF5, MongoDB and MySQL. Here is a table for comparing there features and suitable tasks. For HDF5, For MongoDB, For MySQL,
  13. TuShare is an … First released in 2014, now it has a large community with more than 100,000 community users, which includes over 500 financial institutions. As a data tool, TuShare does not provide data by itself, but instead using data from differenct data feeds. As an example, users can get Daily Bar data from Sina Finance or Tencent Finance and get fundamental data of equity from Shanghai Stock Exchange. For high frequency market data or more detailed reference data, TuShare also support commercial datafeeds such as Datayes and JZData.
  14. Let’s have a look at TuShare features. First, data available on TuShare includes market data … We will see more detail on the next slide. TuShare uses Pandas dataframe and series for data structure, which makes it very easy to use. You don’t need to download data into a csv file and then read it into the memory. Just one line of code, you get the dataframe you need for data analysis. TuShare also provides io tools based on Pandas, which allow users to easily save data into the format they want to use. This includes MySQL/MongoDB/HDF5 and CSV. The community of TuShare project is very active. Instead of mailing list which is widely used in open-source world for discussion, TuShare uses IM groups of the Tencent QQ, in which community members can talk to each other instantly. So when you get a question, it’s always easy to find some support. The community also makes great contribution to the documentation of the project.
  15. This table shows some examples of the data available on TuShare.
  16. A short example for downloading ETF price data using Tushare and run a backtesting of double moving average strategy in about 30 lines of code. Download data Calculate moving averages Calculate pos based on ma crossing, be ware of the shift by one period here. Calculate daily trading cost and net pnl. Calculate cumulative pnl and plot the chart.
  17. When talking about strategy development, people have the most freedom: array based backtesting vs event based backtesting 2. Write backtesting scripts or use backtesting frameworks. Here, we won’t go into too much details, but introduce some common tools. Jupyter notbook is one of my favourite tool for conducting data analysis and strategy development. Its advantages includes:…
  18. Here is the basic steps of strategy development. In China, there are various backtesting tools similar to Zipline for this purpose..
  19. Now we have the trading signals generated from our strategy, the last step is to send our orders to the market.
  20. To run an automated trading system, we will need these functions. Realtime data feed: …
  21. Vn.py project is an … The design philosophy of vn.py is by traders, for traders. In my early career, with no professinal IT education or training, I experienced lots of difficulties when trying to build automated trading systems. C++ is too difficult to learn for me and matlab is just not suitable for writing event-driven programme. I hope that there can be a platform which is easy enough for None IT professionals to learn and ensures flexibility by allowing users to modify any lower layer functions if they want. One of the main target of vn.py is to solve the problem that… Mainly written in Python and uses C++ for low-layer and performance sensitive infrastructure.
  22. Vn.py project is a framework for developing automated trading programmes. VnTrader is the trading platform developed based on those functions provided in the project.
  23. The CTA strategy function of VnTrader provides event-driven backtesting which can … The backtesting engine and the live trading engine have the same API functions, which means that traders can use one strategy code for both backtesting and live trading. This can help to avoid extra bugs when converting the strategy from b to t.