You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By current design, the CDRCPR vector curve is just a python list ,which is not easy way to understand how this vector being applied to pool performance .
Question _0.01 being applied to what asset periods ? when the 0.01 starts ? _
Solution 1: create a util function to create pool performance vector via dates
function buildVector():
buildVector( dealObject, "CDR", ["<date1>",<val1>],[<date2>,<val2>].....)
# it will drop the data points before projection start date ( cutoff date / and previous collection date )
# if the <date1> is after the projection start date , raise error
The text was updated successfully, but these errors were encountered:
Background
By current design, the
CDR
CPR
vector curve is just a python list ,which is not easy way to understand how thisvector
being applied to pool performance .Question _
0.01
being applied to what asset periods ? when the 0.01 starts ? _Solution 1: create a util function to create pool performance vector via dates
function buildVector():
The text was updated successfully, but these errors were encountered: