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 | gowtu635@gmail.com |
| β‘ 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** | βΉ23,719.30 | +0.27% | π’ β² |
| **BANK NIFTY** | βΉ54,055.35 | +1.15% | π’ β² |
| **RELIANCE** | βΉ1,354.50 | +0.36% | π’ β² |
| **TCS** | βΉ2,317.30 | -0.43% | π΄ βΌ |
| **INFY** | βΉ1,174.50 | -0.57% | π΄ βΌ |
| **HDFCBANK** | βΉ766.80 | +1.01% | π’ β² |
<!-- STOCK-TABLE:END -->)",
f"<!-- STOCK-TABLE:START -->
| SYMBOL | PRICE | CHANGE | STATUS |
|:---|---:|---:|:---:|
| **NIFTY 50** | βΉ23,719.30 | +0.27% | π’ β² |
| **BANK NIFTY** | βΉ54,055.35 | +1.15% | π’ β² |
| **RELIANCE** | βΉ1,354.50 | +0.36% | π’ β² |
| **TCS** | βΉ2,317.30 | -0.43% | π΄ βΌ |
| **INFY** | βΉ1,174.50 | -0.57% | π΄ βΌ |
| **HDFCBANK** | βΉ766.80 | +1.01% | π’ β² |
<!-- 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 | βΉ23,719.30 | +0.27% | π’ β² |
| BANK NIFTY | βΉ54,055.35 | +1.15% | π’ β² |
| RELIANCE | βΉ1,354.50 | +0.36% | π’ β² |
| TCS | βΉ2,317.30 | -0.43% | π΄ βΌ |
| INFY | βΉ1,174.50 | -0.57% | π΄ βΌ |
| HDFCBANK | βΉ766.80 | +1.01% | π’ β² |
π 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 | βΉ23,719.30 | +0.27% | π’ β² |
| BANK NIFTY | βΉ54,055.35 | +1.15% | π’ β² |
| RELIANCE | βΉ1,354.50 | +0.36% | π’ β² |
| TCS | βΉ2,317.30 | -0.43% | π΄ βΌ |
| INFY | βΉ1,174.50 | -0.57% | π΄ βΌ |
| HDFCBANK | βΉ766.80 | +1.01% | π’ β² |
