Use pyotp library we can automate the logging process
2023-11-16Simple python script to fetch live stock quotes from new NSE website.
2021-01-16We will download tick level prices for a given stocks from NSE’s website using a simple python script
2021-01-08This blog post is inspired by the book Coffee can investing, we will see how patient investors are rewarded with higher returns at much lower risk
2020-12-31Simple script to download minute level data using jugaad-trader
2020-12-26Cool visualization to analyse monthly nifty returns over 3 decades using heatmap
2020-12-22 A series of articles explaining how to implement a pair trading strategy with python using jugaad-data
Download data historical data using jugaad-data and calculate beta using pandas and numpy
2020-08-23Use Jugaad-Trader, a python library, to trade in Zerodha even without Kite Connect Subscription.
2020-07-31Use preemptible VMs in combination with always free tier VM, set up cron job to turn on the VM whenver it terminates
2020-07-23Automatically run test whenever there is a change in test or code file using inotify
2020-07-23In this post we will log in to Zerodha account using python requests
2020-07-16Next in option chain series, we now fetch the option chain and calculate the max-pain
2020-07-10Download NSE data in AWS, GCP or any other cloud platform using Judaad Data where NSEpy fails
2020-07-05It is crucial to choose right broker if you are planning to venture into algo-trading. In this article we will discuss about the factor you should consider while choosing a broker for algo-trading and we will also share a list of brokers supporting algo-trading.
2020-06-01Curated list of companies operating in HFT and algo trading
2020-04-18Fetching live option chain from NSE in pandas dataframe What is Option chain Option chain of a security is a single table which shows premium price, open interest, volume traded etc for both put and call options and for every strike price Install required packages pip install requests bs4 pandas Getting started We import the required modules import requests from bs4 import BeautifulSoup import numpy as np import pandas as pd URL for option chain
0001-01-01