Created
June 27, 2022 10:37
-
-
Save ganigithub/1e9d946957d0d908e79c3b11e6db7e85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ticker = "NSE:INFY" | |
| interval_high = kite.quote(ticker)[ticker]['ohlc']['high'] | |
| print(interval_high) | |
| #output : 1610.7 | |
| interval_low = kite.quote(ticker)[ticker]['ohlc']['low'] | |
| print(interval_low) | |
| #output : 1592.05 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment