楼主: slowry
10469 37

[学科前沿] 【2018新书】Testing and Tuning Market Trading Systems: Algorithms in C++ [推广有奖]

大师

59%

还不是VIP/贵宾

-

威望
12
论坛币
922205 个
通用积分
5840.4347
学术水平
3054 点
热心指数
3446 点
信用等级
3180 点
经验
214024 点
帖子
4706
精华
0
在线时间
12206 小时
注册时间
2018-3-1
最后登录
2022-6-29

相似文件 换一批

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
Testing and Tuning Market Trading Systems: Algorithms in C++
by Timothy Masters  (Author)

About the author
Timothy Masters received a PhD in mathematical statistics with a specialization in numerical computing. Since then he has continuously worked as an independent consultant for government and industry. His early research involved automated feature detection in high-altitude photographs while he developed applications for flood and drought prediction, detection of hidden missile silos, and identification of threatening military vehicles. Later he worked with medical researchers in the development of computer algorithms for distinguishing between benign and malignant cells in needle biopsies. For the last twenty years he has focused primarily on methods for evaluating automated financial market trading systems. He has authored five books on practical applications of predictive modeling: Practical Neural Network Recipes in C++ (Academic Press, 1993); Signal and Image Processing with Neural Networks (Wiley, 1994); Advanced Algorithms for Neural Networks (Wiley, 1995); Neural, Novel, and Hybrid Algorithms for Time Series Prediction (Wiley, 1995); Data Mining Algorithms in C++ (Apress, 2018); Assessing and Improving Prediction and Classification (Apress, 2018); Deep Belief Nets in C++ and CUDA C: Volume 1 (Apress, 2018); and Deep Belief Nets in C++ and CUDA C: Volume 2 (Apress, 2018).

About this book
Build, test, and tune financial, insurance or other market trading systems using C++ algorithms and statistics. You’ve had an idea and have done some preliminary experiments, and it looks promising. Where do you go from here?  Well, this book discusses and dissects this case study approach.
Seemingly good backtest performance isn't enough to justify trading real money. You need to perform rigorous statistical tests of the system's validity. Then, if basic tests confirm the quality of your idea, you need to tune your system, not just for best performance, but also for robust behavior in the face of inevitable market changes. Next, you need to quantify its expected future behavior, assessing how bad its real-life performance might actually be, and whether you can live with that. Finally, you need to find its theoretical performance limits so you know if its actual trades conform to this theoretical expectation, enabling you to dump the system if it does not live up to expectations.
This book does not contain any sure-fire, guaranteed-riches trading systems. Those are a dime a dozen... But if you have a trading system, this book will provide you with a set of tools that will help you evaluate the potential value of your system, tweak it to improve its profitability, and monitor its on-going performance to detect deterioration before it fails catastrophically. Any serious market trader would do well to employ the methods described in this book.
What You Will Learn
  • See how the 'spaghetti-on-the-wall' approach to trading system development can be done legitimately
  • Detect overfitting early in development
  • Estimate the probability that your system's backtest results could have been due to just good luck
  • Regularize a predictive model so it automatically selects an optimal subset of indicator candidates
  • Rapidly find the global optimum for any type of parameterized trading system
  • Assess the ruggedness of your trading system against market changes
  • Enhance the stationarity and information content of your proprietary indicators
  • Nest one layer of walkforward analysis inside another layer to account for selection bias in complex trading systems
  • Compute a lower bound on your system's mean future performance
  • Bound expected periodic returns to detect on-going system deterioration before it becomes severe
  • Estimate the probability of catastrophic drawdown
Who This Book Is For
Experienced C++ programmers, developers, and software engineers.  Prior experience with rigorous statistical procedures to evaluate and maximize the quality of systems is recommended as well.  

Table of contents
Chapter 1: Introduction 1
    The Target Audience, and Overview of Contents 1
        What’s in This Book 1
        What’s Not in This Book 3
    About Trading Systems 4
        Market Prices and Returns 5
        Two Types of Automated Trading Systems 6
        The Agony of Believing the Computer 7
        Future Leak Is More Dangerous Than You May Think 7
        The Percent Wins Fallacy 8
Chapter 2: Pre-optimization Issues 11
    Assessing and Improving Stationarity 11
        The STATN Program 13
        Improving Location Stationarity by Oscillating 17
        Extreme Stationarity Induction 19
    Measuring Indicator Information with Entropy 20
        Computing the Relative Entropy of an Indicator 22
        Entropy Impacts Predictive Model Quality 24
        Improving the Entropy of an Indicator 25
        Monotonic Tail-Only Cleaning 29
Chapter 3: Optimization Issues 35
    Regularizing a Linear Model 35
        Overview of the Regularized Model 36
        Beta Adjustment with Guaranteed Convergence 40
        Differential Case Weighting 41
        Rapid Computation with Covariance Updates 42
        Outline of the Beta Optimization Process 46
        Code for Beta Optimization 48
        Descending a Lambda Path 55
        Optimizing Lambda with Cross Validation 59
        The CD_ MA Program 63
    Making a Linear Model Nonlinear 67
    Differential Evolution: A Universal Nonlinear Optimizer 69
        The DIFF_ EV. CPP Routine for Differential Evolution 75
Chapter 4: Post-optimization Issues 91
    Cheap Bias Estimates 91
        The StocBias Class 92
    Cheap Parameter Relationships 96
    Parameter Sensitivity Curves 108
        Putting It All Together Trading OEX 112
Chapter 5: Estimating Future Performance I: Unbiased Trade Simulation 121
    In-Sample and Out-of-Sample Performance 121
        The TrnBias Program to Demonstrate Training Bias 123
        Selection Bias 124
        Walkforward Analysis 129
        Future Leak by Unobvious IS/ OOS Overlap 131
        Cross-Validation Analysis 143
        Special Precautions for Algorithmic Trading 151
    Comparing Cross Validation with Walkforward: XVW 156
        Computationally Symmetric Cross Validation 158
        What Does This Test Actually Measure?  163
    Nested Walkforward Analysis 172
        The Nested Walkforward Algorithm 174
        A Practical Application of Nested Walkforward 179
    An Example Using S& P 100 Components 187
    Cross Validation Nested Inside Walkforward 188
Chapter 6: Estimating Future Performance II: Trade Analysis 193
    Handling Dynamic Trading Systems 193
        Unknown Lookahead to Single Bars, Revisited 194
    Profit per Bar? Per Trade? Per Time?  195
        Analyzing Completed Trade Returns Is Problematic 196
        The PER_ WHAT Program 198
    A Lower Bound for Mean Future Returns 209
        Brief Digression: Hypothesis Tests 210
        So, How Do We Use This Probability?  212
        Parametric P-Values 216
        Parametric Confidence Intervals 218
        Lower Confidence Bounds and Hypothesis Tests 222
    Bootstrap Confidence Intervals 222
        The Pivot and Percentile Methods 223
        The BC a Bootstrap Algorithm  225
        The BOOT_ CONF. CPP Subroutines 227
        The BOUND_ MEAN Program and Results with SPX 232
        Beware of Bootstrapping Ratios 238
    Bounding Future Returns 241
        Deriving a Lower Bound from Empirical Quantiles 242
        Confidence in the Computed Lower Bound 244
        What About an Upper Bound on Future Returns?  247
        The CONFTEST Program: Overview 248
        The CONFTEST Program: Code 251
        The BND_ RET Program 257
    Bounding Drawdown 262
        Intuition Gone Wrong 263
        Bootstrapping Drawdown Bounds 265
        The DRAWDOWN Program 267
        Experiments with the DRAWDOWN Program 277
        The CHOOSER_ DD Program 279
Chapter 7: Permutation Tests 283
    Overview of Permutation Testing 283
    Testing a Fully Specified Trading System 285
        Testing the Training Process 286
        Walkforward Testing a Trading System Factory 287
        Permutation Testing of Predictive Models 289
    The Permutation Testing Algorithm 291
        Extending the Algorithm for Selection Bias 292
    Partitioning Total Return of a Trading System 294
        Essential Permutation Algorithms and Code 298
        Permuting Simple Market Prices 299
        Permuting Multiple Markets with an Offset 301
    Example: P-Value and Partitioning 310
        Example: Training with Next Bar Returns 312
    Example: Permuting Multiple Markets 316
Index 319

Length: 321 pages
Publisher: Apress; 1st ed. edition (December 26, 2018)
Language: English
ISBN-10: 148424172X
ISBN-13: 978-1484241721

PDF version
Apress__Testing and Tuning Market Trading Systems_Algorithms in C .pdf (3.91 MB, 需要: 15 个论坛币)

EPUB version
Apress__Testing and Tuning Market Trading Systems_Algorithms in C .epub (5.99 MB, 需要: 15 个论坛币)

二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Algorithms Algorithm Trading Systems TESTING

已有 4 人评分经验 论坛币 学术水平 热心指数 信用等级 收起 理由
jgtech + 5 + 3 + 3 + 3 精彩帖子
xujingtang + 100 精彩帖子
wwqqer + 100 精彩帖子
cheetahfly + 100 + 3 + 2 精彩帖子

总评分: 经验 + 300  论坛币 + 5  学术水平 + 6  热心指数 + 5  信用等级 + 3   查看全部评分

本帖被以下文库推荐

沙发
hifinecon 发表于 2018-10-27 07:57:12 |只看作者 |坛友微信交流群
That’s very kind of LZ. Thank you.

已有 1 人评分论坛币 学术水平 热心指数 信用等级 收起 理由
slowry + 5 + 1 + 1 + 1 精彩帖子

总评分: 论坛币 + 5  学术水平 + 1  热心指数 + 1  信用等级 + 1   查看全部评分

使用道具

藤椅
GKINGLIU 在职认证  发表于 2018-10-27 08:41:53 来自手机 |只看作者 |坛友微信交流群
slowry 发表于 2018-10-27 07:42
Testing and Tuning Market Trading Systems: Algorithms in C++
by Timothy Masters  (Author)

不错不错
已有 1 人评分论坛币 学术水平 热心指数 信用等级 收起 理由
slowry + 5 + 1 + 1 + 1 精彩帖子

总评分: 论坛币 + 5  学术水平 + 1  热心指数 + 1  信用等级 + 1   查看全部评分

使用道具

板凳
军旗飞扬 发表于 2018-10-27 09:00:43 来自手机 |只看作者 |坛友微信交流群
slowry 发表于 2018-10-27 07:42
Testing and Tuning Market Trading Systems: Algorithms in C++
by Timothy Masters  (Author)

谢谢楼主分享
已有 1 人评分论坛币 学术水平 热心指数 信用等级 收起 理由
slowry + 5 + 1 + 1 + 1 精彩帖子

总评分: 论坛币 + 5  学术水平 + 1  热心指数 + 1  信用等级 + 1   查看全部评分

使用道具

报纸
sbd88 发表于 2018-10-27 13:06:26 |只看作者 |坛友微信交流群
pdf,epub 哪个版本比较好?
已有 1 人评分论坛币 学术水平 热心指数 信用等级 收起 理由
slowry + 5 + 1 + 1 + 1 精彩帖子

总评分: 论坛币 + 5  学术水平 + 1  热心指数 + 1  信用等级 + 1   查看全部评分

使用道具

地板
tsangwm 发表于 2018-10-27 13:07:45 |只看作者 |坛友微信交流群
thank you
已有 1 人评分论坛币 学术水平 热心指数 信用等级 收起 理由
slowry + 5 + 1 + 1 + 1 精彩帖子

总评分: 论坛币 + 5  学术水平 + 1  热心指数 + 1  信用等级 + 1   查看全部评分

使用道具

7
edmcheng 发表于 2018-10-27 14:45:14 |只看作者 |坛友微信交流群
Thanks a lot!
已有 1 人评分论坛币 学术水平 热心指数 信用等级 收起 理由
slowry + 5 + 1 + 1 + 1 精彩帖子

总评分: 论坛币 + 5  学术水平 + 1  热心指数 + 1  信用等级 + 1   查看全部评分

使用道具

8
slowry 发表于 2018-10-27 16:17:17 |只看作者 |坛友微信交流群
sbd88 发表于 2018-10-27 13:06
pdf,epub 哪个版本比较好?
pdf能完整表现出原排版,使用的人较多,但是小屏设备重排不佳; epub对各类显示屏支持较好,尤其是移动端APP强大,各种重排非常精美,但是显示页码通常与原排版页码不同,因此因人而异阅读习惯需有所适应。

使用道具

9
jjxm20060807 发表于 2018-10-27 21:46:14 |只看作者 |坛友微信交流群
谢谢分享
已有 1 人评分论坛币 学术水平 热心指数 信用等级 收起 理由
slowry + 5 + 1 + 1 + 1 精彩帖子

总评分: 论坛币 + 5  学术水平 + 1  热心指数 + 1  信用等级 + 1   查看全部评分

使用道具

10
wl5f 在职认证  发表于 2018-10-27 22:05:12 |只看作者 |坛友微信交流群
谢谢分享
已有 1 人评分论坛币 学术水平 热心指数 信用等级 收起 理由
slowry + 5 + 1 + 1 + 1 精彩帖子

总评分: 论坛币 + 5  学术水平 + 1  热心指数 + 1  信用等级 + 1   查看全部评分

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jr
拉您进交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-5-3 23:06