class Gowtham:
name = "Gowtham Pulivendula"
role = "Software Engineer @ Bank of America"
location = "Hyderabad, India"
edu = "B.Tech CSE โ Amrita Vishwa Vidyapeetham"
skills = ["Python", "ML", "ETL Pipelines", "Cloud", "Docker"]
markets = ["NSE", "BSE", "Options", "Swing Trading", "F&O"]
trading = {
"instruments" : ["Equity", "Options (CE/PE)", "Index Futures"],
"strategies" : ["Swing Trading", "Options Buying", "Trend Following"],
"indices" : ["NIFTY 50", "BANK NIFTY", "FINNIFTY"],
"tools" : ["Zerodha Kite", "TradingView", "Python Algo"],
}
def motto(self):
return "Code by day. Trade by market hours. Learn always.""The stock market is a device for transferring money from the impatient to the patient." โ Warren Buffett
|
Active Trader NSE & BSE |
Derivatives CE / PE / Futures |
Strategy Swing + Trend |
Algo Trading Python Scripts |
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ GOWTHAM'S TRADING TERMINAL โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ
โ INDICES LEVEL CHG% SIGNAL โ
โ NIFTY 50 โโโโโโโโโโ +0.72% โฒ BULLISH โ
โ BANKNIFTY โโโโโโโโโโ +0.45% โฒ BULLISH โ
โ FINNIFTY โโโโโโโโโโ -0.11% โบ NEUTRAL โ
โ INDIA VIX โโโโโโโโโโ -2.30% โผ FEAR LOW โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ
โ WATCHLIST INSTRUMENTS โ
โ > NIFTY 50 OPTIONS (Weekly CE/PE) โ
โ > BANK NIFTY FUTURES โ
โ > Large Cap Swing Positions โ
โ > Python Algo Screener โ NSE Data Feed โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ
โ TOOLS: Zerodha Kite | TradingView | Python | pandas | ta-lib โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
| MA | Period | Use Case |
|---|---|---|
| EMA | 9 | Intraday momentum, options entry |
| EMA | 20 | Short-term trend, swing entry/exit |
| SMA | 50 | Medium-term trend filter |
| SMA | 200 | Long-term trend, golden/death cross |
| VWAP | Daily | Intraday reference for institutional levels |
| ๐ข Role | Software Engineer @ Bank of America, Hyderabad |
| ๐ Education | B.Tech CSE โ Amrita Vishwa Vidyapeetham (2023) |
| ๐ Trading | NSE/BSE โ Options, Swing, F&O, Algo Strategies |
| ๐ญ Working On | Docker Curriculum & Cloud Security |
| ๐ฑ Learning | Cloud Security, Machine Learning, Algo Trading |
| ๐ฌ Ask Me About | ML, Data Science, Python, Stock Markets |
| ๐ Blog | gowthampuli.blogspot.com |
| ๐ซ Contact | [email protected] |
| โก Fun Fact | I think I'm lazy... but my algo runs 24/7 ๐ |
| Certification | Issuer | Year | |
|---|---|---|---|
| ๐ | 5-Star SQL | HackerRank | 2023 |
| โ๏ธ | Azure Fundamentals (AZ-900) | Microsoft | 2025 |
| ๐ค | Generative AI Fundamentals | Databricks Academy | 2025 |
๐ Auto-Update Stock Watchlist in README โ Click to expand YAML
# .github/workflows/stock-update.yml
name: Update Stock Watchlist
on:
schedule:
# Runs at 9:15 AM and 3:30 PM IST (market open/close) on weekdays
- cron: "45 3 * * 1-5" # 9:15 AM IST
- cron: "0 10 * * 1-5" # 3:30 PM IST
workflow_dispatch:
jobs:
update-stocks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: pip install yfinance pandas requests
- name: Fetch & update watchlist
run: |
python3 << 'EOF'
import yfinance as yf
import re
watchlist = {
"NIFTY 50" : "^NSEI",
"BANK NIFTY" : "^NSEBANK",
"RELIANCE" : "RELIANCE.NS",
"TCS" : "TCS.NS",
"INFY" : "INFY.NS",
"HDFCBANK" : "HDFCBANK.NS",
}
rows = ["| SYMBOL | PRICE | CHANGE | STATUS |",
"|:---|---:|---:|:---:|"]
for name, sym in watchlist.items():
t = yf.Ticker(sym)
h = t.history(period="2d")
if len(h) >= 2:
price = h["Close"].iloc[-1]
prev = h["Close"].iloc[-2]
chg = ((price - prev) / prev) * 100
status = "๐ข โฒ" if chg >= 0 else "๐ด โผ"
rows.append(f"| **{name}** | โน{price:,.2f} | {chg:+.2f}% | {status} |")
table = "\n".join(rows)
with open("README.md", "r") as f:
content = f.read()
new_content = re.sub(
r"(<!-- STOCK-TABLE:START -->
| SYMBOL | PRICE | CHANGE | STATUS |
|:---|---:|---:|:---:|
| **NIFTY 50** | โน22,819.60 | -2.09% | ๐ด โผ |
| **BANK NIFTY** | โน52,274.60 | -2.67% | ๐ด โผ |
| **RELIANCE** | โน1,348.10 | -4.60% | ๐ด โผ |
| **TCS** | โน2,389.80 | +0.52% | ๐ข โฒ |
| **INFY** | โน1,269.70 | -0.73% | ๐ด โผ |
| **HDFCBANK** | โน756.20 | -3.34% | ๐ด โผ |
<!-- STOCK-TABLE:END -->)",
f"<!-- STOCK-TABLE:START -->
| SYMBOL | PRICE | CHANGE | STATUS |
|:---|---:|---:|:---:|
| **NIFTY 50** | โน22,819.60 | -2.09% | ๐ด โผ |
| **BANK NIFTY** | โน52,274.60 | -2.67% | ๐ด โผ |
| **RELIANCE** | โน1,348.10 | -4.60% | ๐ด โผ |
| **TCS** | โน2,389.80 | +0.52% | ๐ข โฒ |
| **INFY** | โน1,269.70 | -0.73% | ๐ด โผ |
| **HDFCBANK** | โน756.20 | -3.34% | ๐ด โผ |
<!-- STOCK-TABLE:END -->",
content, flags=re.DOTALL
)
with open("README.md", "w") as f:
f.write(new_content)
print("Watchlist updated!")
'EOF'
- name: Commit updated README
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add README.md
git diff --staged --quiet || git commit -m "chore: update stock watchlist [$(date +%Y-%m-%d)]"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}Add these markers in your README where you want the live table:
<!-- STOCK-TABLE:START -->
| SYMBOL | PRICE | CHANGE | STATUS |
|---|---|---|---|
| NIFTY 50 | โน22,819.60 | -2.09% | ๐ด โผ |
| BANK NIFTY | โน52,274.60 | -2.67% | ๐ด โผ |
| RELIANCE | โน1,348.10 | -4.60% | ๐ด โผ |
| TCS | โน2,389.80 | +0.52% | ๐ข โฒ |
| INFY | โน1,269.70 | -0.73% | ๐ด โผ |
| HDFCBANK | โน756.20 | -3.34% | ๐ด โผ |
๐ Profile Stats Auto-Refresh โ Click to expand YAML
# .github/workflows/profile-stats.yml
name: Refresh Profile Stats
on:
schedule:
- cron: "0 */6 * * *" # every 6 hours
workflow_dispatch:
jobs:
refresh:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update WakaTime stats
uses: anmol098/waka-readme-stats@master
with:
WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
SHOW_OS: "True"
SHOW_LANGUAGE: "True"
SHOW_EDITORS: "True"
SHOW_PROJECTS: "True"
SHOW_TIMEZONE: "True"
SHOW_COMMIT: "True"Auto-updated every market session via GitHub Actions + yfinance
| SYMBOL | PRICE | CHANGE | STATUS |
|---|---|---|---|
| NIFTY 50 | โน22,819.60 | -2.09% | ๐ด โผ |
| BANK NIFTY | โน52,274.60 | -2.67% | ๐ด โผ |
| RELIANCE | โน1,348.10 | -4.60% | ๐ด โผ |
| TCS | โน2,389.80 | +0.52% | ๐ข โฒ |
| INFY | โน1,269.70 | -0.73% | ๐ด โผ |
| HDFCBANK | โน756.20 | -3.34% | ๐ด โผ |
