Skip to content

Instantly share code, notes, and snippets.

View AbhishekBhosale46's full-sized avatar
🎯
Focusing

Abhishek Bhosale AbhishekBhosale46

🎯
Focusing
View GitHub Profile
@AbhishekBhosale46
AbhishekBhosale46 / CandlestickRecognition.py
Created April 6, 2022 05:13
CandleStick pattern recognition in python
import talib
import yfinance as yf
from datetime import date
today = date.today().strftime("%Y-%m-%d")
stockticker = '^BSESN'
dataframe = yf.download(stockticker, start='2021-03-31', end=today)
open = dataframe['Open']
high = dataframe['High']