Karan Patel

Karan Patel

Hey there! I'm Karan, a civil engineer turned stock market enthusiast. My journey into the world of trading began back in 2018, and since then, I've been on a thrilling ride exploring all aspects of the market. Driven by my passion for finance, I founded TradenvestEasy, a YouTube channel where I share insights and tips about algorithmic trading. It's been an incredible journey connecting with traders from around the globe and learning from each other's experiences. I recently launched TradenvestEasy.com, a platform dedicated to algorithmic traders of all levels. My goal is to provide valuable resources and foster a supportive community where we can all grow and succeed together. Join me as we navigate the exciting world of algorithmic trading and strive for financial empowerment!

Fetch Live Option Chain Using Kotak Neo API

Option chain using kotak neo api

import neo_api_client from neo_api_client import NeoAPI def create_exchange_tokens_live(df, custom_segment_name): exch_tokens = [] for index, row in df.iterrows(): # Use the custom_segment_name provided and add it to the end token_dict = { “instrument_token”: str(row[‘pSymbol’]), “exchange_segment”: custom_segment_name.lower() } exch_tokens.append(token_dict) return exch_tokens def…

Read MoreFetch Live Option Chain Using Kotak Neo API