EU 30/360
Bases: Convention
The 30/360 (EU) day count convention, also known as '30E/360' or 'Eurobond basis'.
Computes the number of days in a period divided by 360, using the formula:
f = [[360 * (Y2 - Y1)] + [30 * (M2 - M1)] + (D2 - D1)] / 360
Where
- Y1, Y2: Years of the start and end dates.
- M1, M2: Months of the start and end dates.
- D1: First calendar day, adjusted to 30 if 31.
- D2: End calendar day, adjusted to 30 if 31.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
use_post_dates
|
bool
|
Whether to use post dates for cash flow day counts. Defaults to True. |
True
|
include_non_financing_flows
|
bool
|
Whether to include non-financing cash flows in periodic factor computations. Defaults to False. |
False
|
use_xirr_method
|
bool
|
Whether to use XIRR method for time periods, referencing the first cash flow date. Defaults to False. |
False
|
Source code in curo/daycount/eu_30_360.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | |
compute_factor(start, end)
Computes the day count factor between two dates using the EU 30/360 convention.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
start
|
Timestamp
|
Start date of the period. |
required |
end
|
Timestamp
|
End date of the period. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
DayCountFactor |
DayCountFactor
|
The day count factor with year fraction and operands. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Source code in curo/daycount/eu_30_360.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | |