I do have a problem with OLE automation.
import win32com.client as win32
amiB = win32.Dispatch('Broker.Application')
amiW = amiB.ActiveDocument.ActiveWindow;
amiW.ZoomToRange( '2019-01-01','2019-01-12' );
Throws the following error:
File "D:/PythonProjekte/AmibrokerCreatingImages/tset2.py", line 11, in <module>
amiW.ZoomToRange( '2019-01-01','2019-01-12' );
TypeError: 'bool' object is not callable
Does anyone have a idea what the problem might be? Why ZoomToRange might be a bool object???