We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
`from jugaad_trader import Zerodha
user_id = "USERID" password = "PASSWORD" pin = "PIN"
kite = Zerodha(user_id, password, pin)
print(kite.login())
print(kite.orders())
print(profile := kite.profile())
margins = kite.margins() print(margins)
holdings = kite.holdings() print(holdings)
positions = kite.positions() print(positions)
orders = kite.orders() print(orders)`
The text was updated successfully, but these errors were encountered:
@Anirudh-1213 i think Zerodha is forcing to use TOTP from Sep 23rd so you need to use TOTP code as mentioned in defect 45. (#45)
https://support.zerodha.com/category/your-zerodha-account/login-credentials/login-credentials-of-trading-platforms/articles/enable-device-lock
Sorry, something went wrong.
No branches or pull requests
`from jugaad_trader import Zerodha
user_id = "USERID"
password = "PASSWORD"
pin = "PIN"
kite = Zerodha(user_id, password, pin)
print(kite.login())
print(kite.orders())
Set access token loads the stored session.
Name chosen to keep it compatible with kiteconnect.
Get profile
print(profile := kite.profile())
Get margin
margins = kite.margins()
print(margins)
Get holdings
holdings = kite.holdings()
print(holdings)
Get today's positions
positions = kite.positions()
print(positions)
Get today's orders
orders = kite.orders()
print(orders)`
The text was updated successfully, but these errors were encountered: