Skip to content
4 changes: 1 addition & 3 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@ certifi==2023.5.7
cffi==1.15.1
charset-normalizer==3.1.0
constantly==15.1.0
cryptography==41.0.1
hyperlink==21.0.0
idna==3.4
incremental==22.10.0
isodate==0.6.1
logzero==1.7.0
pycparser==2.21
pycrypto==2.6.1
pyotp==2.8.0
pyparsing==3.1.0
python-dateutil==2.8.2
Expand All @@ -22,7 +20,7 @@ rdflib-jsonld==0.6.2
requests==2.31.0
simplejson==3.19.1
six==1.16.0
smartapi-python==1.3.0
smartapi-python==1.3.5
Twisted==22.10.0
txaio==23.1.1
typing_extensions==4.6.3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="smartapi-python",
version="1.2.9",
version="1.3.5",
author="ab-smartapi",
author_email="[email protected]",
description="Angel Broking openApi integration",
Expand Down
3 changes: 2 additions & 1 deletion test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
smartApi.modifyOrder(modifyparams)
print("Modify Orders:",modifyparams)

smartApi.cancelOrder(orderid, "NORMAL")
cancelOrder=smartApi.cancelOrder(orderid, "NORMAL")
print("cancelOrder",cancelOrder)

orderbook=smartApi.orderBook()
print("Order Book :", orderbook)
Expand Down