He descubierto que la versión C++ de QuantLib ofrece una función llamada holidayList en la clase calendario.
//! Returns the holidays between two dates
static std::vector<Date> holidayList(const Calendar& calendar,
const Date& from,
const Date& to,
bool includeWeekEnds = false);
He intentado obtener todos los días festivos entre dos fechas utilizando esta llamada:
TARGET_calendar = TARGET()
TARGET_calendar.holidayList(TARGET_calendar, Date(1,1,2015), Date(1,1,2016))
AttributeError: 'TARGET' object has no attribute 'holidayList'
Como no estoy muy familiarizado con la conversión de C++ a Python, también lo he intentado:
holidayList(TARGET_calendar, Date(1,1,2015), Date(1,1,2016))
NameError: name 'holidayList' is not defined
¿Puede alguien ayudarme, por favor?
¡Muchas gracias!