I want to capture real time data and save it using api of bank nifty

i want to capure 7 mins trading activity of bank nifty and store the values in ecel sheet, can some one tell me where to start

Hello,

To get started, follow these steps:

  1. Create an Application
    Visit Upstox Apps and create your application.

  2. Obtain the Session Token
    Generate the session token and integrate the API into your application.

  3. Fetch Intraday Data
    Use the Intraday Candle Data API to retrieve 1-minute Bank Nifty trading activity for today.

  4. Capture 7-Minute Activity
    If you need 7-minute trading activity, extract the last 7 OHLC (Open, High, Low, Close) values from the data.

  5. Export Data to Excel
    Process the data and export it to an Excel sheet as needed.

You can implement this using any framework of your choice, such as Python.

Thanks!

1 Like

import time
import upstox_python_sdk

Replace with your Upstox API credentials

API_KEY = ā€œ"
API_SECRET = "
ā€
ACCESS_TOKEN = ā€œYzMDkzLCJpc3MiOiJ1ZGFwaS1nYXRld2F5LXNlcnZpY2UiLCJleHAiOjE3NDM2MzEyMDB9.5D51EN3MFrDTfUj0WYy6uiWD2JCpnwCmUeBy94yS1zsā€

Initialize the Upstox client

client = upstox_python_sdk.Upstox(API_KEY, API_SECRET)
client.set_access_token(ACCESS_TOKEN)

Function to fetch live market data

def get_live_data(symbol, exchange=ā€œNSE_EQā€):
try:
data = client.get_live_feed(symbol, exchange, ā€˜fullā€™)
return data
except Exception as e:
print(ā€œError fetching data:ā€, e)
return None

Example: Fetching real-time data for RELIANCE stock

symbol = ā€œRELIANCEā€
exchange = ā€œNSE_EQā€

while True:
live_data = get_live_data(symbol, exchange)
if live_data:
print(f"Time: {time.strftime(ā€˜%H:%M:%Sā€™)} | Price: {live_data[ā€˜last_priceā€™]}")
time.sleep(2) # Fetch data every 2 seconds

I tried with these code but it was showing error with moule

I believe you are trying the script from chat gptā€¦ Iā€™m travelling on the same boat.

yes ram, why should we collaborate and work

1 Like

Hello,

Please refer to API docs: GitHub - upstox/upstox-python: Official Python SDK for accessing Upstox API instead of using ChatGPT.

Thanks & Regards

Sure, we can work together.