Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Numpy, TypeError: Could not be cast from dtype('<M8[us]') to dtype('<M8[D]')

I'm trying to find out number of business days until a specific date and get the following error:

import numpy as np
import pandas_market_calendars as mcal
from datetime import datetime
import pandas as pd

nyse = mcal.get_calendar('NYSE')
holidays = nyse.holidays()
holidays = list(holidays.holidays) # NYSE Holidays

today = datetime.now()
expiration = datetime(2019,2,13,0,0)

days_to_expiration = np.busday_count(today,expiration,holidays=holidays)
print(days_to_expiration)

In [6]: days_to_expiration = np.busday_count(today,expiration,holidays=holidays)
Traceback (most recent call last):

  File "<ipython-input-6-559c16b20339>", line 1, in <module>
    days_to_expiration = np.busday_count(today,expiration,holidays=holidays)

TypeError: Iterator operand 0 dtype could not be cast from dtype('<M8[us]') to dtype('<M8[D]') according to the rule 'safe'

Any ideas what is going on here?

like image 527
kroonike Avatar asked Jan 30 '19 07:01

kroonike


1 Answers

You should pass dates to busday_count rather than datetimes:

In [11]: today = datetime.now()
    ...: expiration = datetime(2019,2,13,0,0)
    ...:
    ...: days_to_expiration = np.busday_count(today.date(),expiration.date(),holidays=holidays)
    ...: print(days_to_expiration)
11
like image 141
Andy Hayden Avatar answered Nov 15 '22 08:11

Andy Hayden