investopedia level 2
Mispricing can be explained by the sum of the two components: true mispricing and estimation error
Ve – P = (V – P) + (Ve – V)
If the asset is expected to benefit the owner in the foreseeable future, the valuation of the asset is carried out on a going concern basis and the value of the asset is called going concern value.
liquidation value.
The value of an asset is called fair market value if the value is determined in a trading transaction between willing and knowledgeable parties (buyers and sellers) when parties are not under any compulsion to engage in the buying or selling activities.
In many circumstances assets are worth more than their fair market value to a particular buyer because of their specific benefits to that buyer. These benefits are usually called synergy effects. The difference between fair market value and the price paid for the asset is called "goodwill" in accounting terms.
The process for equity valuation begins with business understanding. Analysts who are going to value equity of a particular company must carefully analyze the industry and the market the company is operating in while also answering the following questions: Is the industry the company is operating in vulnerable to business cycles? What are the primary competitors and market share of the company being valued? What are the future trends of the sales of the company? What are the main value drivers? usually done by applying Porter’s five forces analysis.
forecast: top down, bottom up
Equity valuation models can be classified into two broad categories: absolute valuation models and relative valuation models. Absolute valuation models are designed to estimate intrinsic value of an asset based on either its future benefits or market values. The absolute models are further divided into two categories: present value models and asset-based valuation models. There are three groups of models under present value models: dividend discount models, free cash flow models and residual income models.
The companies that generate revenue from many unrelated segments can be better valued using sum-of the-parts valuation (sometimes called break up value or private market value).
Some researchers suggest that markets tend to value a company less than the sum of its segment values, a phenomenon called Conglomerate discount.
Possible explanations for conglomerate discounts are the following: 1) inefficient diversification by companies (diversification on the company level rather than the shareholder level does not maximize shareholders' wealth); 2) inability of organic growth, so companies tend to grow through acquisition; 3) mismeasurement of intrinsic value (conglomerate discount does not exist).
The difference between expected return and required return is called expected alpha (ex-ante alpha), and the difference between realized return and contemporaneous required return is called realized alpha (ex-post alpha).
investopedia level 2的更多相关文章
- Java compiler level does not match解决方法
从别的地方导入一个项目的时候,经常会遇到eclipse/Myeclipse报Description Resource Path Location Type Java compiler level d ...
- Android requires compiler compliance level 5.0 or 6.0. Found '1.4' instead的解决办法
今天在导入工程进Eclipse的时候竟然出错了,控制台输出的是: [2013-02-04 22:17:13 - takepicture] Android requires compiler compl ...
- Android版本和API Level对应关系
http://developer.android.com/guide/topics/manifest/uses-sdk-element.html Platform Version API ...
- [LeetCode] Binary Tree Level Order Traversal II 二叉树层序遍历之二
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left ...
- [LeetCode] Binary Tree Zigzag Level Order Traversal 二叉树的之字形层序遍历
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to ...
- [LeetCode] Binary Tree Level Order Traversal 二叉树层序遍历
Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, ...
- Android版本与api Level
Platform Version API Level VERSION_CODE Notes Android 4.4 19 KITKAT Platform Highlights Android 4.3 ...
- Selenium通过WebDriver控制IE浏览器出错 Browser zoom level was set to 109%. It should be set to 100%
错误信息: WebDriverException: Message: Unexpected error launching Internet Explorer. Browser zoom level ...
- pythonchallenge 解谜 Level 8
#-*- coding:utf-8 -*- #代码版本均为python 3.5.1 #Level 7 import bz2 un=b'BZh91AY&SYA\xaf\x82\r\x00\x00 ...
随机推荐
- 将数据文件从普通文件系统移动到ASM
场景一:数据库可以关闭1.关闭并mount数据库 $ sqlplus '/as sysdba' SQL> shutdown immediate SQL> startup mount; 2. ...
- 自动插入数据sql
oracle自动插入一定大小的数据: create tablespace TABLESPACE datafile 'E:\TABLESPACE.dbf' size 10g autoextend on ...
- CPlus播放多媒体之播放声音
1.头文件需要<mmsystem.h>,但是之前需要包含<windows.h> 2.预处理#pragma comment<lib,"winmm.h"& ...
- Debian系列Linux/Ubuntu 安装软件
wps(http://community.wps.cn/download/) 优客天气(https://launchpad.net/indicator-china-weather/+download) ...
- bzoj2729 [HNOI2012]排队
组合数学,推一下式子,并不难推. java代码 import java.io.*; import java.math.BigInteger; import java.util.*; public cl ...
- shell脚本中切换用户执行相应的命令或者shell脚本的方法
通常在执行自动化过程中可能需要将root用户切换到其他用户进行执行,如:oralce 但是,执行的命令又要回到root用户下,继续执行root用户下的其他命令. 此时需要了解 su 命令中的参数 -c ...
- Boadload和Image$$??$$Limit含义
Bootloader 即引导加载程序,是系统加电后运行的第一段软件代码.简单的说它们都是bootloader,所完成的任务也大同小异. 熟悉x86体系结构的朋友肯定知道,x86平台上bootloade ...
- Hibernate Criteria Restrictions
HQL运算符 QBC运算符 含义 = Restrictions.eq() 等于equal <> Restrictions.ne() 不等于not equal > Restrict ...
- C# 中的"yield"使用
yield是C#为了简化遍历操作实现的语法糖,我们知道如果要要某个类型支持遍历就必须要实现系统接口IEnumerable,这个接口后续实现比较繁琐要写一大堆代码才能支持真正的遍历功能.举例说明 usi ...
- C语言:内存字节对齐详解[转载]
一.什么是对齐,以及为什么要对齐: 1. 现代计算机中内存空间都是按照byte划分的,从理论上讲似乎对任何类型的变量的访问可以从任何地址开始,但实际情况是在访问特定变量的时候经常在特定的内存地址访问, ...