总体框架

Time Value

 Interest Rate

rf: 无风险收益率 (CFA中一般认为是美国短期国债T-bill的收益率)

Nominal risk-free rate: 名义无风险税率

Real risk-free rate: 实际无风险利率

Liquidity premium: 流动性风险溢价

Maturity premium: 到期风险溢价

Risk premium: 风险溢价

费雪效应

Nominal interest rate和Stated Interest rate是一个概念

Effective annual rate(EAR)

For discrete compounding

  • Where: m is the compounding frequency

    • r is the noinal/quoted/stated annual interest rate
    • r/m is periodic interest rate

For continuous compounding

  • 时时刻刻分分秒秒在计息.
  • 例: 算名义年利率是8%, 求连续计算情形下的EAR.
    • 计算器按法: 0.08 --> 2ND --> LN ==>结果: 1.083287

Conversion of PV/FV

Present Value (PV)

  • The value of an initial investment.

Future Value (FV)

  • The value of an initial investment would be worth n period from today.

Conversion of PV/FV:

  • compounding:  

    •  
  • continuous compounding:
    •  
  • 站在今天去推测未来会价值几何: PV --> FV : 复利
  • 站在未来推测今天需要存入多少: FV --> PV :折现

Annuity

Ordinary annuity

  • all constant cash flows occuring at the end of each period(END), 后付年金

Annuity due

  • all constant cash flows occuring at the beginning of each period(BEG), 先付年金

Prepetuity

  • a set of constant never-ending sequential cash flows occuring at the end of each period, 永续年金

    • PV = A/R

      • where A: the periodic payment
      • r: the periodic return

推荐用第三种方式, 就不用再把计算器在END和BGN模式之间去转换.

QM1_Time value of Money的更多相关文章

随机推荐

  1. 二、添加 Insert into

    文档目录 开始使用  初始化查询实例: LambdaToSql.SqlClient DB = new LambdaToSql.SqlClient(); 添加实体数据 ", IP = &quo ...

  2. 使用XStream是实现XML与Java对象的转换(3)--注解

    六.使用注解(Annotation) 总是使用XStream对象的别名方法和注册转换器,会让人感到非常的乏味,又会产生很多重复性代码,于是我们可以使用注解的方式来配置要序列化的POJO对象. 1,最基 ...

  3. 到底创建了几个String对象?

    到底创建了几个String对象? 标签: 堆栈使用 对象创建 分类: 开发技术 关键字: java 面试题 string 创建几个对象 作者:臧圩人(zangweiren) 网址:http://zan ...

  4. XML 和 java对象相互转换

    XML 和 java对象相互转换 博客分类: XML 和 JSON   下面使用的是JDK自带的类,没有引用任何第三方jar包. Unmarshaller 类使客户端应用程序能够将 XML 数据转换为 ...

  5. 从__acrt_first_block == header 谈起,记录dll链接不一致的问题

    最近写了一个postgresql的数据库连接池dll.写的比较随意,某个头文件如下: #pragma once #include "common.h"#include " ...

  6. Terminating app due to uncaught exception 'CALayerInvalid', reason: 'layer <CALayer: 0x7fda42c66e30> is a part of cycle in its layer tree'

    iOS App里面所有的View构成一个组件树,这个树里面如果有了闭环就会出现这个报错,最常见的你不小在某UIViewController里面写了这样的代码: someView.addSubView( ...

  7. 一个简单的小小记账本程序(java)

    感觉基础知识学了不少,但是一直搞不清一个项目的实际开发流程,所以就借着这个小记账本的程序梳理一下.因为楼主也是出于学习阶段的菜鸟,所以程序可能会有各种玄学的bug,希望一起提升吧. 跟着站长学到了很多 ...

  8. 深入理解javascript 匿名函数和闭包

    代码如下: (function(){ //这里忽略jQuery所有实现 })(); (function(){ //这里忽略jQuery所有实现 })();  半年前初次接触jQuery的时候,我也像其 ...

  9. SpringBoot cache-control 配置静态资源缓存 (以及其中的思考经历)

    昨天在部署项目时遇到一个问题,因为服务要部署到外网使用,中间经过了较多的网络传输限制,而且要加载arcgis等较大的文件,所以在部署后,发现页面loading需要很长时间,而且刷新也要重新从服务器下载 ...

  10. Java RandomAccessFile用法 【转】

    RandomAccessFile源地址:http://blog.csdn.net/akon_vm/article/details/7429245 RandomAccessFile是用来访问那些保存数据 ...