Replies: 1 comment 3 replies
-
0 is set from input to indicate the first year (year=0) discount rate is 0. See the discount_curve tab in basic_term_sample.xlsx included in |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm new to this and have not done modelling for quite a while so I was learning the program by creating a spreadsheet to replicate the numbers. For the first model point, the two functions below have the following output:
disc_factors() : array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 0.99448063, 0.99402206, 0.9935637 ,...])
disc_rate_mth() : array([0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0.00046133, 0.00046133, 0.00046133,...])
I was wondering if the first eleven 0's from disc_rate_mth() should not be there and disc_factors() be calculated as array([1, (1+i_mth)^-1, (1+i_mth)^-2,...])?
Beta Was this translation helpful? Give feedback.
All reactions