Quantitative Startegies for Achieving Alpha(二)
Chapter 3 The Day-To-Day Drivers Of Stock Market Returns
Summary:
(1) Earning growth is the primary driver of day-to-day stock market returns. Companies that generate high earning growth outperform, while companies that record low levels of growth underperform. Sales growth is a secondary factor.
(2) Earning growth is not predictive of future stock market returns. That is, the market is very efficient in pricing in changes in earnings growth as they are reported.
(3) Free cash flow growth is also a significant factor in driving stock market returns. Free cash flow growth is not nearly as strong a factor as earnings growth, but it appears to be somewhat independent from earnings in driving returns.
(4) Unlike earning growth, free cash growth is predictive. That is, the market appears less efficient in discounting changes in free cash flow growth than it is in discounting earnings growth. (Therefore, free cash flow growth is the first basic that could be used to form a forward-looking quantitative test)
(5) The stock market isn't driven wholly by fundamentals, however. The thoughts, hopes, beliefs, and fears of inverstors---what we call investor sentiment---also drive market returns. The interaction between fundamentals and investor sentiment determines a stock's price.
(6) Wall Street analysts' earning estimates reflect investor expectations. Positive earnings surprises(earning reports that beat average analyst estimates) cause stocks to outperform, on a day-to-day basis, while negative earnings surprises(earning that come in below estimates) cause stocks to underperform.
(7) In terms of predictive power, however, our research shows that earnings surprises were predictive of excess returns in the past but seem to have lost that predictive power in recent years.
(8) A stock's valuation, in terms of its P / E ratio, reflects investor sentiment and is a strong factor in driving day-to-day stock market returns. Low valuation stocks of companies that perform better than expected, in terms of earnings growth, outperform significantly, and high valuation stocks of companies that perform worse that expected underperform significantly.
(9) While earning growth is the strongest fundamental driver of returns, valuation (as measured here by the price-to-forward earnings estimate ration) is the strongest investor sentiment-related driver of returns.
Quantitative Startegies for Achieving Alpha(二)的更多相关文章
- Quantitative Strategies for Achieving Alpha(一)
1. 怎么构建测试 所有的测试五等分,表明我们的回测的universe被分为五个组,根据我们要测试的公司因子的值. Quintiles provide a clear answer to that q ...
- Quantitative Strategies for Achieving Alpha (三)
chapter 4: Profitability Profitability measures we tested include return on invested capital, return ...
- 【转】OpenGL基础图形编程(二)
原文:http://blog.chinaunix.net/uid-20638550-id-1909184.html 分类: 十一.位图与图像 11.1.位图 11.1.1 位图(Bitmap)与字符 ...
- Alpha阶段初始任务分配
项目 内容 这个作业属于哪个课程 2021春季软件工程(罗杰 任健) 这个作业的要求在哪里 团队项目-计划-Alpha阶段说明书 一.Alpha阶段总体规划 进行服务器相关部署 进行开发相关技术学习 ...
- iOS开发——动画篇Swift篇&动画效果的实现
Swift - 动画效果的实现 在iOS中,实现动画有两种方法.一个是统一的animateWithDuration,另一个是组合出现的beginAnimations和commitAnimation ...
- Jordan Lecture Note-4: Linear & Ridge Regression
Linear & Ridge Regression 对于$n$个数据$\{(x_1,y_1),(x_2,y_2),\cdots,(x_n,y_n)\},x_i\in\mathbb{R}^d,y ...
- android---动画入门(一)
android 动画分为两类,View Animation(视图动画)和property Animation(属性动画),View Animation(视图动画)包含了Tween Animation和 ...
- 第九章 Android-UI组件(2)
一.图像视图(ImageView) 布局 <?xml version="1.0" encoding="utf-8"?> <LinearLayo ...
- ZBrush中独特功能Projection Master
Projection Master可以理解为投影大师,它是ZBrush®的一个独特功能,该功能可以让用户使用所有的2D和2.5D笔刷工具在3D模型上进行雕刻.纹理绘制和其他的操作. 简单来说,Proj ...
随机推荐
- tomcat 404 The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
1.原因 tomcat没有找到项目,因为是用eclipse启动的,不是在tomcat的目录下启动,所以我们需要在eclipse下配置启动目录,好让tomcat找到项目. 2.解决 用本地安装的tomc ...
- MySQL单列索引和组合索引的创建及区别介绍
MySQL单列索引是我们使用MySQL数据库中经常会见到的,MySQL单列索引和组合索引的区别可能有很多人还不是十分的了解,下面就为您分析两者的主要区别,供您参考学习. 为了形象地对比两者,再建一个表 ...
- 03Java面试题-------------中科软
1.String是最基本的数据类型吗?String和StringBuffer的区别? 不是.Java中的基本数据类型只有8个:byte,short,int,long,float,double,char ...
- C语言实现单链表
大二学习数据结构和算法啦,因为之前用Java语言实现过,所以理解起来还是比较轻松,就是理解指针与结构体的运用.废话不多说,上代码! 初始化 typedef struct Node { int data ...
- jyputer notebook 、jypyter、IPython basics
1 .修改jupyter默认工作目录:打开cmd,在命令行下指定想要进的工作目录,即键入“cd d/ G:\0工作面试\学习记录”标红部分是想要进入的工作目录. 2.Tab补全 a.在命令行输入表达 ...
- 5.使用github脚本LAZY----几个最好的发行版----自定义终端----基本命令
使用现成的脚本 LAZY * 如果您不想手动设置,可以用这个脚本帮您设置 访问:github.com/arismelachroinos/lscript sudo apt-get git git clo ...
- linux ftp使用相关
ftp 7.7.6.201 21121 name:aaa password:123456
- 【转】centos7安装
转自:https://blog.csdn.net/qq_42570879/article/details/82853708 1.CentOS下载CentOS是免费版,推荐在官网上直接下载,网址:htt ...
- MySQL-快速入门(9)视图
1.什么是视图 视图是一个虚表.视图可以进行查询.增加.修改.删除.进行修改.增加.删除,将影响基本表中的数据. 2.视图相对基本表的优势 1>简单化:看到的就是想要的字段列,可以简化后续查询. ...
- C++中的函数重载分析(一)
1,重载是 C 语言到 C++ 语言的一个飞跃,C 语言中没有重载的概念,所有的函数 名是不允许有重复的,在 C++ 中因为引进了重载,所以函数名可以重复: 2,自然语言中的上下文: 1,你知道上面词 ...