| Safe Haskell | Safe |
|---|---|
| Language | Haskell2010 |
QuantLib.Time
Synopsis
- class Holiday m where
- type Date = Day
- data WeekDay
- data BusinessDayConvention
- getWeekDay :: Date -> WeekDay
- getDaysBetween :: (Day, Day) -> [Day]
- isWeekEnd :: Date -> Bool
- getNextBusinessDay :: Holiday a => a -> Date -> Date
- data Thirty360
- class DayCounter m where
- intGregorian :: Day -> (Int, Int, Int)
Documentation
class Holiday m where Source #
Defines a holidays for given calendar. Corresponds to calendar class in QuantLib
Minimal complete definition
Week days
Instances
| Enum WeekDay Source # | |
| Eq WeekDay Source # | |
| Show WeekDay Source # | |
data BusinessDayConvention Source #
Business Day conventions - These conventions specify the algorithm used to adjust a date in case it is not a valid business day.
Constructors
| Following | |
| ModifiedFollowing | |
| Preceding | |
| ModifiedPreceding | |
| Unadjusted |
Instances
getWeekDay :: Date -> WeekDay Source #
Gets a week day
Thirty day counters as in QuantLib
Constructors
| ThirtyUSA | |
| ThirtyEuropean | |
| ThirtyItalian |