NNikhilinalgotrading.hashnode.dev·Apr 7, 2023 · 1 min readAverage True Range - Algo CodeLearn full about ATR before using the below code import kiteconnect import time # Authenticate with the KiteConnect API kite = kiteconnect.KiteConnect(api_key="your_api_key") kite.set_access_token("your_access_token") # Define the symbol and interv...00
NNikhilinalgotrading.hashnode.dev·Feb 16, 2023 · 3 min readKaufman’s adaptive moving average - Python algo codeIn this article, we will show you how to use Python's TALIB library to create a simple trading strategy that generates buy and sell signals based on the KAMA indicator. First, we import the necessary libraries: TALIB and Pandas. We create an empty Pa...00
NNikhilinalgotrading.hashnode.dev·Feb 15, 2023 · 2 min readChecking for Awesome Oscillator Buy Sell Signals - Python CodeFind out what is Awesome Oscillator The below code checks for Awesome Oscillator signals constantly and gives But and Sell Signals as and when they occur. df should contain the live data feed close, low, high and open prices with the timeframe for wh...00
NNikhilinalgotrading.hashnode.dev·Dec 31, 2022 · 4 min readGetting started with Zerodha KiteConnect APIIn India, Zerodha is one of the leading stock market brokers with a large number of active clients. And the services that are provided by this discount stock broker are well competitive and stand ahead among the peer stock brokers. And similarly, whe...00