daily_yearly: Convert Daily Gain to X-year Gain

Description Usage Arguments Value Examples

Description

For example, you can use this function to calculate that an investment that gains 0.1 days).

Usage

1
daily_yearly(gain, years = 1)

Arguments

gain

Numeric value specifying a gain, e.g. 0.005 for 0.5 a vector of gains.

years

Numeric value.

Value

Numeric value or vector.

Examples

1
2
3
4
5
# Calculate annual gain for an investment that gains 0.1% per day
daily_yearly(gain = 0.001)

# Calculate 5-year gains corresponding to various daily gains
daily_yearly(gain = seq(0, 0.001, 0.0001), years = 5)

stocks documentation built on May 2, 2019, 9:43 a.m.

Related to daily_yearly in stocks...