File size: 5,281 Bytes
bc80b7a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
"""
Stock Plot Generation Script
This script generates stock gain plots using yfinance and matplotlib.
It includes robust error handling and debugging information.
"""
import os
import sys
import traceback
import platform
from datetime import datetime
# Configure matplotlib before importing pyplot
import matplotlib
matplotlib.use('Agg') # Non-interactive backend
import matplotlib.pyplot as plt
import pandas as pd
import yfinance as yf
def setup_environment():
"""Print environment information and verify dependencies."""
print("\n" + "=" * 80)
print("ENVIRONMENT INFORMATION")
print("=" * 80)
print(f"Python: {sys.version}")
print(f"Platform: {platform.platform()}")
print(f"Current directory: {os.getcwd()}")
print(f"Python executable: {sys.executable}")
print(f"Current time: {datetime.now().isoformat()}")
# Verify required packages
print("\nChecking dependencies:")
for pkg in [('pandas', pd), ('matplotlib', matplotlib), ('yfinance', yf)]:
try:
print(f" β {pkg[0]}: {pkg[1].__version__}")
except Exception as e:
print(f" β {pkg[0]}: Not available ({e})")
def plot_stock_gain(symbols, timeframe="3mo"):
"""
Generate and save stock gain plots.
Args:
symbols: List of stock symbols or a single symbol string
timeframe: Time period to fetch data for (e.g., '1mo', '3mo', '1y')
Returns:
str: Path to the saved plot file, or None if failed
"""
# Convert single symbol to list
if isinstance(symbols, str):
symbols = [symbols]
print(f"\nProcessing symbols: {', '.join(symbols)} for timeframe: {timeframe}")
# Create output directory if it doesn't exist
output_dir = 'generated_plots'
os.makedirs(output_dir, exist_ok=True)
plot_paths = []
for symbol in symbols:
try:
print(f"\n{'='*40}")
print(f"Processing: {symbol}")
print(f"{'='*40}")
# Download stock data
print(f"Downloading {timeframe} data for {symbol}...")
ticker = yf.Ticker(symbol)
stock_data = ticker.history(period=timeframe)
if stock_data.empty:
print(f"β No data found for {symbol}")
continue
print(f"Retrieved {len(stock_data)} data points from {stock_data.index[0].date()} to {stock_data.index[-1].date()}")
# Calculate percentage gain
stock_data['Gain'] = stock_data['Close'].pct_change().fillna(0).cumsum()
# Create plot
plt.figure(figsize=(12, 6))
plt.plot(stock_data.index, stock_data['Gain'],
linewidth=2,
label=f'{symbol} Gain')
# Format plot
plt.title(f'{symbol} Cumulative Gain - {timeframe.upper()}', fontsize=14)
plt.xlabel('Date', fontsize=12)
plt.ylabel('Cumulative Gain', fontsize=12)
plt.legend()
plt.grid(True, linestyle='--', alpha=0.7)
plt.tight_layout()
# Save plot
timestamp = datetime.now().strftime('%Y%m%d_%H%M%S')
plot_filename = f"{symbol}_{timeframe}_{timestamp}.png"
plot_path = os.path.join(output_dir, plot_filename)
plt.savefig(plot_path, dpi=120, bbox_inches='tight')
plt.close() # Close the figure to free memory
# Verify the file was created
if os.path.exists(plot_path):
file_size = os.path.getsize(plot_path)
print(f"β Plot saved: {plot_path} ({file_size} bytes)")
plot_paths.append(plot_path)
# Also save as plot.png in root for compatibility
if symbol == symbols[-1]: # Only for the last symbol
main_plot_path = 'plot.png'
plt.figure(plt.get_fignums()[-1]) # Get the last figure
plt.savefig(main_plot_path, dpi=120, bbox_inches='tight')
print(f"β Main plot saved as: {os.path.abspath(main_plot_path)}")
else:
print("β Failed to save plot")
except Exception as e:
print(f"β Error processing {symbol}: {str(e)}")
print("Traceback:")
traceback.print_exc()
return plot_paths[0] if plot_paths else None
def main():
"""Main execution function."""
try:
setup_environment()
# Default symbols and timeframe
symbols = ["META"]
timeframe = "ytd"
# Generate plots
plot_path = plot_stock_gain(symbols, timeframe)
if plot_path:
print(f"\nβ
Successfully generated plot: {os.path.abspath(plot_path)}")
return 0
else:
print("\nβ Failed to generate any plots")
return 1
except Exception as e:
print(f"\nβ Fatal error: {str(e)}")
print("Traceback:")
traceback.print_exc()
return 1
if __name__ == "__main__":
sys.exit(main())
|