DS-London
DS-London
Compare this code then (update to xbbg 0.7.6). Two methods: one uses the session='day' parameter, the second uses an explicit time_range: ``` df1 = blp.bdtick('ESZ1 Index',datetime(2021,8,17),session='day',types=['BID','ASK'],ref='CME') print(df1) df2 = blp.bdtick('ESZ1...
Having looked in the xbbg code, from intervals.py: ``` def market_normal(self, session, after_open, before_close) -> Session: """ Time intervals between market Args: session: [allday, day, am, pm, night] after_open: mins...
I've attached the two .py files (with a .txt extension as can't seem to attached .py files) for the `_Accounts` and `_Folders` objects. FWIW, I can access `DISPID_NEWENUM` (-4) and...
At the risk of hijacking @bennyrowland 's issue, I am seeing something similar when automating MS Outlook: what seems to be indentical code works with `comtypes` (and VBA) but not...
Hi, have upgraded to `pywin32 305`. Still having the same issue with Outlook collections. ``` import win32com.client ns = win32com.client.gencache.EnsureDispatch('outlook.application').GetNamespace("MAPI") accs = ns.Accounts ``` This works: ``` for n in...
One thing I have noticed for the `_Namespace` interface on the Outlook Type Library: The `Accounts` property: ``` [id(0x0000fad0), propget, helpcontext(0x0000030a)] Accounts* Accounts(); ``` but the `Folders` property: ``` [id(0x00002103),...