daily_yearly {stocks} | R Documentation |
For example, you can use this function to calculate that an investment that gains 0.1 days).
daily_yearly(gain, years = 1)
gain |
Numeric value specifying a gain, e.g. 0.005 for 0.5 a vector of gains. |
years |
Numeric value. |
Numeric value or vector.
# 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)