├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── IB ├── API_VersionNum.txt ├── shared │ ├── CommissionReport.h │ ├── CommonDefs.h │ ├── Contract.h │ ├── EClient.h │ ├── EClientSocketBase.h │ ├── EClientSocketBaseImpl.h │ ├── EWrapper.h │ ├── Execution.h │ ├── HScrollListBox.cpp │ ├── HScrollListBox.h │ ├── IBString.h │ ├── Order.h │ ├── OrderState.h │ ├── ScannerSubscription.h │ ├── TagValue.h │ ├── TwsSocketClientErrors.h │ └── shared_ptr.h ├── src │ ├── EClientSocketBase.cpp │ ├── EPosixClientSocket.cpp │ ├── EPosixClientSocket.h │ └── EPosixClientSocketPlatform.h ├── swig_wrap.cpp └── swig_wrap.h ├── LICENSE ├── MANIFEST.in ├── README.rst ├── examples ├── contractdetails.py ├── customerror.py ├── historicaldata.py └── placeorder.py ├── patches ├── gcc_4_7 ├── mfc_msc_mixup ├── remove_stdafx └── shared_ptr_bool_conv ├── setup.py ├── swigibpy.py └── swigify_ib.i /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /IB/API_VersionNum.txt: -------------------------------------------------------------------------------- 1 | API_Version=9.71 2 | -------------------------------------------------------------------------------- /IB/shared/CommissionReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/CommissionReport.h -------------------------------------------------------------------------------- /IB/shared/CommonDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/CommonDefs.h -------------------------------------------------------------------------------- /IB/shared/Contract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/Contract.h -------------------------------------------------------------------------------- /IB/shared/EClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/EClient.h -------------------------------------------------------------------------------- /IB/shared/EClientSocketBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/EClientSocketBase.h -------------------------------------------------------------------------------- /IB/shared/EClientSocketBaseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/EClientSocketBaseImpl.h -------------------------------------------------------------------------------- /IB/shared/EWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/EWrapper.h -------------------------------------------------------------------------------- /IB/shared/Execution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/Execution.h -------------------------------------------------------------------------------- /IB/shared/HScrollListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/HScrollListBox.cpp -------------------------------------------------------------------------------- /IB/shared/HScrollListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/HScrollListBox.h -------------------------------------------------------------------------------- /IB/shared/IBString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/IBString.h -------------------------------------------------------------------------------- /IB/shared/Order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/Order.h -------------------------------------------------------------------------------- /IB/shared/OrderState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/OrderState.h -------------------------------------------------------------------------------- /IB/shared/ScannerSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/ScannerSubscription.h -------------------------------------------------------------------------------- /IB/shared/TagValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/TagValue.h -------------------------------------------------------------------------------- /IB/shared/TwsSocketClientErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/TwsSocketClientErrors.h -------------------------------------------------------------------------------- /IB/shared/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/shared/shared_ptr.h -------------------------------------------------------------------------------- /IB/src/EClientSocketBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/src/EClientSocketBase.cpp -------------------------------------------------------------------------------- /IB/src/EPosixClientSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/src/EPosixClientSocket.cpp -------------------------------------------------------------------------------- /IB/src/EPosixClientSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/src/EPosixClientSocket.h -------------------------------------------------------------------------------- /IB/src/EPosixClientSocketPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/src/EPosixClientSocketPlatform.h -------------------------------------------------------------------------------- /IB/swig_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/swig_wrap.cpp -------------------------------------------------------------------------------- /IB/swig_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/IB/swig_wrap.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/README.rst -------------------------------------------------------------------------------- /examples/contractdetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/examples/contractdetails.py -------------------------------------------------------------------------------- /examples/customerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/examples/customerror.py -------------------------------------------------------------------------------- /examples/historicaldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/examples/historicaldata.py -------------------------------------------------------------------------------- /examples/placeorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/examples/placeorder.py -------------------------------------------------------------------------------- /patches/gcc_4_7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/patches/gcc_4_7 -------------------------------------------------------------------------------- /patches/mfc_msc_mixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/patches/mfc_msc_mixup -------------------------------------------------------------------------------- /patches/remove_stdafx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/patches/remove_stdafx -------------------------------------------------------------------------------- /patches/shared_ptr_bool_conv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/patches/shared_ptr_bool_conv -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/setup.py -------------------------------------------------------------------------------- /swigibpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/swigibpy.py -------------------------------------------------------------------------------- /swigify_ib.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Komnomnomnom/swigibpy/HEAD/swigify_ib.i --------------------------------------------------------------------------------