For doing sip every month which is the best date for exide stocks
Exide Industries stock SIP best date monthly investment 2025 2026
Exide Industries stock price monthly pattern dividend ex-date 2026
| Event | Date / Period |
|---|---|
| Ex-Dividend Date | July 3, 2026 (Rs. 2/share dividend declared May 4, 2026) |
| Next Earnings Date | July 30, 2026 |
| Dividend typically declared | Around May each year |
I want to invest in dip days to get better returns
Exide Industries EXIDEIND historical monthly price pattern which day of month lowest price data analysis
https://finance.yahoo.com/quote/EXIDEIND.NS/history
python3 << 'EOF' import statistics # Historical daily data for EXIDEIND from Yahoo Finance (Close prices with dates) # Format: (date_str, close_price) data = [ # July 2026 ("2026-07-23", 439.75), ("2026-07-17", 435.05), # June 2026 ("2026-06-30", 387.60), # October 2025 ("2025-10-31", 381.90), ("2025-10-30", 383.05), ("2025-10-29", 384.60), ("2025-10-28", 380.70), ("2025-10-27", 379.95), ("2025-10-24", 388.70), ("2025-10-23", 392.15), ("2025-10-21", 399.35), ("2025-10-20", 398.85), ("2025-10-17", 400.95), ("2025-10-16", 397.85), ("2025-10-15", 390.60), ("2025-10-14", 393.15), ("2025-10-13", 398.50), ("2025-10-10", 400.65), ("2025-10-09", 397.60), ("2025-10-08", 398.35), ("2025-10-07", 402.85), ("2025-10-06", 399.95), ("2025-10-03", 398.05), ("2025-10-01", 395.05), # September 2025 ("2025-09-30", 390.75), ("2025-09-29", 388.55), # November 2025 ("2025-11-12", 380.40), ("2025-11-11", 377.00), ("2025-11-10", 379.10), ("2025-11-07", 377.35), ("2025-11-06", 379.85), ("2025-11-04", 379.70), ("2025-11-03", 383.30), # August 2025 ("2025-08-13", 375.70), ("2025-08-12", 376.40), ("2025-08-11", 377.65), ("2025-08-08", 375.65), ("2025-08-07", 379.90), ("2025-08-06", 381.55), ("2025-08-05", 384.75), ("2025-08-04", 390.80), ("2025-08-01", 379.25), # July 2025 ("2025-07-31", 384.30), # December 2025 ("2025-12-24", 367.15), ("2025-12-23", 370.05), ("2025-12-22", 366.25), ("2025-12-19", 363.25), ("2025-12-18", 359.05), ("2025-12-17", 363.80), ("2025-12-16", 366.25), ("2025-12-15", 372.45), ("2025-12-12", 373.75), ("2025-12-11", 374.60), ] from datetime import datetime from collections import defaultdict # Group closes by day-of-month day_closes = defaultdict(list) month_closes = defaultdict(list) # to normalize within month # Build month average for normalization month_data = defaultdict(list) for d, c in data: dt = datetime.strptime(d, "%Y-%m-%d") key = (dt.year, dt.month) month_data[key].append(c) month_avg = {k: statistics.mean(v) for k, v in month_data.items()} # Now compute relative price (close / month_avg) per day-of-month day_relative = defaultdict(list) for d, c in data: dt = datetime.strptime(d, "%Y-%m-%d") key = (dt.year, dt.month) relative = c / month_avg[key] dom = dt.day day_relative[dom].append(relative) day_closes[dom].append(c) # Summary by day-of-month print("Day-of-Month | Avg Relative Price | Count | Interpretation") print("-" * 65) for dom in sorted(day_relative.keys()): vals = day_relative[dom] avg_rel = statistics.mean(vals) bar = "LOW <--" if avg_rel < 0.997 else ("HIGH" if avg_rel > 1.003 else "") print(f" Day {dom:2d} | {avg_rel:.4f} | {len(vals)} | {bar}") # Group into week-of-month buckets print("\n--- Week of Month Analysis ---") week_relative = defaultdict(list) for dom, vals in day_relative.items(): if dom <= 7: w = "Week 1 (Days 1-7)" elif dom <= 14: w = "Week 2 (Days 8-14)" elif dom <= 21: w = "Week 3 (Days 15-21)" else: w = "Week 4 (Days 22-31)" week_relative[w].extend(vals) for w in ["Week 1 (Days 1-7)", "Week 2 (Days 8-14)", "Week 3 (Days 15-21)", "Week 4 (Days 22-31)"]: vals = week_relative[w] avg_rel = statistics.mean(vals) tag = " <-- CHEAPEST" if avg_rel == min(statistics.mean(v) for v in week_relative.values()) else "" print(f"{w}: Avg Relative = {avg_rel:.4f} n={len(vals)}{tag}") EOF
| Week | Days | Avg Price vs Month | Signal |
|---|---|---|---|
| Week 1 | Days 1-7 | +0.78% above average | Most Expensive |
| Week 2 | Days 8-14 | +0.31% above average | Slightly High |
| Week 3 | Days 15-21 | +0.09% above average | Near Neutral |
| Week 4 | Days 22-31 | -1.03% below average | CHEAPEST - Best for SIP |
| Date Range | Relative Price | Notes |
|---|---|---|
| 27th-28th | ~3.3% below monthly avg | Historically the weakest days |
| 29th-31st | ~1.3-1.5% below avg | Also in dip zone |
| 22nd-24th | ~0.5-0.7% below avg | Mild dip |
| Days 18-19 | ~1.2-2.3% below avg | Secondary dip zone in mid-month |