BusinessDays.jl icon indicating copy to clipboard operation
BusinessDays.jl copied to clipboard

:calendar: A highly optimized Business Days calculator written in Julia language. Also known as Working Days calculator.

Results 7 BusinessDays.jl issues
Sort by recently updated
recently updated
newest added

I think it would be convenient if you could do date arithmetic. For example, if I want somebody to pass a period to another function, I want to be able...

enhancement

Inspired by the job done at https://github.com/felipenoris/bdays, I'm planning a major breaking change for how cache works in this package. Planned changes: * `BusinessDays.initcache` will be removed * `BusinessDays.HolidayCalendarCache` will...

The HolidayCalendarCache as implemented is not type stable due to the hc field being of abstract type HolidayCalendar. This then causes unnecessary allocations and is a degrades performance. I suppose...

Since chinese use both lunar and solar calendars, and easy way to support is to use the file from existing project https://github.com/rainx/cn_stock_holidays/blob/master/cn_stock_holidays/data.txt .

https://github.com/felipenoris/BusinessDays.jl/tree/master/test/quantlib_comparison

Hi quick question. The [tutorial](https://juliafinance.github.io/BusinessDays.jl/stable/) in the documentation states the following about `tobday` ``` # Adjust to next business day julia> tobday(:USSettlement, Date(2015, 1, 1)) 2015-01-02 ``` However it appears...