ivt_stock_price: Stock valuation

Description Usage Arguments Examples

Description

Computes the stock price, dividend, growth rate and required rate of return.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
ivt_stock_price(dividend, growth_rate, return_rate, current = FALSE)

ivt_stock_dividend(stock_price, growth_rate, return_rate,
  current = FALSE)

ivt_stock_return(stock_price, dividend, growth_rate, current = FALSE)

ivt_stock_growth(stock_price, dividend, return_rate, current = FALSE)

ivt_stock_ncg_price(current_dividend, return_rate, growth_rate)

Arguments

dividend

Current/next dividend.

growth_rate

Growth rate of dividend.

return_rate

Required return on stock.

current

Logical; Current dividend or next dividend.

stock_price

Price of stock.

current_dividend

Current dividend on stock.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
# stock price
ivt_stock_price(5.34, 1.88, 7.31)
ivt_stock_price(5.34, 1.88, 7.31, TRUE)

# stock dividend
ivt_stock_dividend(103.92, 8.6, 13.71)
ivt_stock_dividend(103.92, 8.6, 13.71, TRUE)

# stock return
ivt_stock_return(46.8, 2.41, 6.74)
ivt_stock_return(46.8, 2.41, 6.74, TRUE)

# stock growth
ivt_stock_growth(77.15, 4.44, 14.85)
ivt_stock_growth(77.15, 4.44, 14.85, TRUE)

# non constant growth
ivt_stock_ncg_price(1.22, 6.2, c(13, 7, 7, 1))

rsquaredacademy/investorr documentation built on May 14, 2019, 2:12 p.m.