总体框架

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. android Material Design详解

    原文地址:http://blog.csdn.net/jdsjlzx/article/details/41441083/ 前言 我们都知道Marterial Design是Google推出的全新UI设计 ...

  2. Hadoop Bloom Filter 使用

    1.Bloom Filter  默认的 BloomFilter filter =new BloomFilter(10,2,1); // 过滤器长度为10 ,用2哈希函数,MURMUR_HASH (1) ...

  3. Access text files using SQL statements by DB Query Analyzer

    Access text files using SQL statements by DB Query Analyzer Ma Gen feng (Guangdong Unitoll Services ...

  4. mybatis ----数据级联查询(多对一)

    工程的目录结构: 有两个表,一个文章表article ,一个用户表user. create table article (id int(11) not null auto_increment, use ...

  5. obj-c编程10:Foundation库中类的使用(2)[字符串,数组]

    Foundation库的内容不可谓不多,就算很精简的说篇幅也受不了啊!笨猫一向反对博客文章一下子拖拖拉拉写一大坨!KISS哦!so将上一篇文章再分一篇来说,于是有了这篇,可能还会有(3)哦... 我发 ...

  6. 二、添加 Insert into

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

  7. java基础语法(二)--单列模式

    java基础语法(二)--单列模式 /** * 功能:单列模式 * @author Administrator * */ public class SingletonTest { public sta ...

  8. pyspider的一个诡异问题

    其Start_url两次抓取处理失败以后,其之后的所有抓取行为就不正常,似乎根本没有HTTP访问,我把该爬虫的taskdb清空,该爬虫爬取行为恢复正常.这个问题已提交pyspider官方,静待回答.

  9. PHP内核之旅-2.SAPI中的Cli

    PHP 内核之旅系列 PHP内核之旅-1.生命周期 PHP内核之旅-2.SAPI中的Cli 一.SAPI是什么? 1.1 理解SAPI (1)SAPI是PHP框架的接口层.有很多种服务器的SAPI的实 ...

  10. [ Java面试题 ] 集合篇

    1.ArrayList和Vector的区别 这两个类都实现了List接口(List接口继承了Collection接口),他们都是有序集合,即存储在这两个集合中的元素的位置都是有顺序的,相当于一种动态的 ...