Spaces:
Sleeping
Sleeping
| """ | |
| Stock Price Prediction - Gradio App for HuggingFace Spaces | |
| This is the main entry point that will be automatically executed | |
| """ | |
| import gradio as gr | |
| import pandas as pd | |
| import numpy as np | |
| from model import predict_stock, get_supported_symbols | |
| from datetime import datetime | |
| import json | |
| # Custom CSS for better styling | |
| custom_css = """ | |
| .container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| } | |
| .prediction-table { | |
| font-size: 14px; | |
| } | |
| .positive { | |
| color: #10b981; | |
| font-weight: bold; | |
| } | |
| .negative { | |
| color: #ef4444; | |
| font-weight: bold; | |
| } | |
| .neutral { | |
| color: #6b7280; | |
| } | |
| """ | |
| def format_prediction_result(result): | |
| """Format prediction result for display""" | |
| if not result or 'predictions' not in result: | |
| return None, "β No prediction data available" | |
| # Create predictions dataframe | |
| pred_data = [] | |
| for pred in result['predictions']: | |
| pred_data.append({ | |
| 'Date': pred['date'], | |
| 'Predicted Price': f"${pred['price']:.2f}", | |
| 'Change %': f"{pred['change_pct']:+.2f}%", | |
| 'Day': f"Day {pred['day']}" | |
| }) | |
| pred_df = pd.DataFrame(pred_data) | |
| # Create detailed analysis text | |
| symbol = result['symbol'] | |
| last_price = result['last_price'] | |
| last_date = result['last_date'] | |
| # Get first and last predictions | |
| first_pred = result['predictions'][0]['price'] | |
| last_pred = result['predictions'][-1]['price'] | |
| # Calculate overall trend | |
| overall_change = ((last_pred - last_price) / last_price) * 100 | |
| trend = "π Uptrend" if overall_change > 0 else "π Downtrend" if overall_change < 0 else "β‘οΈ Neutral" | |
| # Sentiment analysis | |
| sentiment = result['sentiment'] | |
| sentiment_score = result['sentiment_score'] | |
| sentiment_text = "Positive π" if sentiment_score > 0.2 else "Negative π" if sentiment_score < -0.2 else "Neutral β‘οΈ" | |
| # Build summary | |
| summary = f""" | |
| ### π Stock Price Prediction for {symbol} | |
| **Current Status:** | |
| - Current Price: **${last_price:.2f}** | |
| - Last Updated: **{last_date}** | |
| - Prediction Generated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S UTC')} | |
| **Price Trend:** | |
| - Overall Trend: **{trend}** | |
| - Expected Change: **{overall_change:+.2f}%** | |
| - Price Range: ${min(first_pred, last_pred):.2f} - ${max(first_pred, last_pred):.2f}** | |
| **Market Sentiment:** | |
| - Sentiment: **{sentiment_text}** | |
| - Sentiment Score: **{sentiment_score:.2f}** | |
| - Articles Analyzed: | |
| - π Positive: {sentiment['positive']} | |
| - π Negative: {sentiment['negative']} | |
| - β‘οΈ Neutral: {sentiment['neutral']} | |
| **Model Information:** | |
| - Algorithm: LSTM (Long Short-Term Memory) Neural Network | |
| - Features: Close Price, RSI, MACD, Volatility, SMA20, ROC | |
| - Training Period: Last 100 days | |
| - Look-back Period: 30 days | |
| --- | |
| **β οΈ Disclaimer:** These predictions are based on historical price patterns and current market sentiment. Stock markets are unpredictable, and past performance does not guarantee future results. Always conduct your own research and consult with a financial advisor before making investment decisions. | |
| """ | |
| return pred_df, summary | |
| def predict_stock_interface(symbol, days_ahead): | |
| """Main prediction interface function""" | |
| try: | |
| # Validate inputs | |
| symbol = symbol.upper().strip() | |
| days_ahead = int(days_ahead) | |
| if not symbol: | |
| return None, "β Please enter a stock symbol" | |
| if days_ahead < 1 or days_ahead > 30: | |
| return None, "β Days ahead must be between 1 and 30" | |
| # Run prediction | |
| print(f"\n{'='*60}") | |
| print(f"Predicting {symbol} for {days_ahead} days ahead") | |
| print(f"{'='*60}") | |
| result = predict_stock(symbol, days_ahead, use_cache=True) | |
| # Format and return results | |
| pred_df, summary = format_prediction_result(result) | |
| return pred_df, summary | |
| except Exception as e: | |
| error_msg = f"β Error: {str(e)}" | |
| print(f"Error occurred: {error_msg}") | |
| return None, error_msg | |
| def clear_cache(): | |
| """Clear prediction cache""" | |
| from model import cache | |
| try: | |
| cache.cache = {} | |
| cache.save_cache() | |
| return "β Cache cleared successfully!" | |
| except Exception as e: | |
| return f"β Error clearing cache: {str(e)}" | |
| # Create Gradio interface | |
| with gr.Blocks(title="Stock Price Predictor", css=custom_css) as demo: | |
| # Header | |
| gr.HTML(""" | |
| <div style="text-align: center; padding: 20px;"> | |
| <h1>π Stock Price Predictor</h1> | |
| <p style="font-size: 16px; color: #666;"> | |
| AI-powered stock price predictions using LSTM neural networks and technical analysis | |
| </p> | |
| <p style="font-size: 12px; color: #999;"> | |
| β οΈ For educational purposes only. Not financial advice. | |
| </p> | |
| </div> | |
| """) | |
| # Main prediction section | |
| gr.Markdown("### π Make a Prediction") | |
| with gr.Row(): | |
| with gr.Column(scale=2): | |
| symbol_input = gr.Textbox( | |
| label="Stock Symbol", | |
| placeholder="e.g., AAPL, GOOGL, MSFT, TSLA", | |
| value="AAPL", | |
| info="Enter a valid stock ticker symbol" | |
| ) | |
| with gr.Column(scale=1): | |
| days_input = gr.Slider( | |
| label="Days Ahead", | |
| minimum=1, | |
| maximum=30, | |
| value=5, | |
| step=1, | |
| info="How many days to predict (1-30)" | |
| ) | |
| # Buttons | |
| with gr.Row(): | |
| predict_button = gr.Button("π Predict", variant="primary", size="lg") | |
| clear_button = gr.Button("ποΈ Clear Cache", variant="secondary") | |
| # Output sections | |
| gr.Markdown("### π Prediction Results") | |
| with gr.Row(): | |
| predictions_output = gr.Dataframe( | |
| label="Price Predictions Table", | |
| interactive=False, | |
| elem_classes="prediction-table" | |
| ) | |
| with gr.Row(): | |
| analysis_output = gr.Markdown(label="Detailed Analysis") | |
| # Examples section | |
| gr.Markdown("### π Try These Examples") | |
| example_symbols = [ | |
| ["AAPL", 5], | |
| ["GOOGL", 7], | |
| ["MSFT", 10], | |
| ["TSLA", 5], | |
| ["NVDA", 5], | |
| ["AMZN", 7] | |
| ] | |
| gr.Examples( | |
| examples=example_symbols, | |
| inputs=[symbol_input, days_input], | |
| outputs=[predictions_output, analysis_output], | |
| fn=predict_stock_interface, | |
| cache_examples=False, | |
| label="Click an example to try:" | |
| ) | |
| # Information section | |
| with gr.Row(): | |
| with gr.Column(): | |
| gr.Markdown(""" | |
| ### π How It Works | |
| 1. **Data Collection**: Fetches 100 days of historical price data | |
| 2. **Feature Engineering**: Calculates 6 technical indicators | |
| 3. **LSTM Training**: Trains neural network on sequences | |
| 4. **Prediction**: Forecasts future prices | |
| 5. **Sentiment**: Analyzes recent news sentiment | |
| ### π― Features Used | |
| - **Close Price**: Stock closing price | |
| - **RSI**: Relative Strength Index (momentum) | |
| - **MACD**: Moving Average Convergence | |
| - **Volatility**: Price volatility measure | |
| - **SMA20**: 20-day Moving Average | |
| - **ROC**: Rate of Change | |
| """) | |
| with gr.Column(): | |
| gr.Markdown(""" | |
| ### β‘ Performance | |
| - **Speed**: <2 seconds per prediction | |
| - **Accuracy**: 85-86% directional accuracy | |
| - **Memory**: Optimized for free tier | |
| - **Cache**: 24-hour prediction cache | |
| ### π Privacy | |
| - Data fetched from Yahoo Finance | |
| - News from Finnhub (requires API key) | |
| - No data stored permanently | |
| - Predictions cached locally | |
| ### π Supported Symbols | |
| All major stocks: US, EU, Indian exchanges | |
| """) | |
| # Footer | |
| gr.Markdown(""" | |
| --- | |
| #### β οΈ Important Disclaimer | |
| These predictions are for **educational purposes only** and should not be used as financial advice. | |
| Stock markets are inherently unpredictable, influenced by countless factors beyond price history. | |
| Always conduct your own research and consult with a licensed financial advisor before making investment decisions. | |
| **Risk**: Past performance does not guarantee future results. | |
| """) | |
| # Event handlers | |
| predict_button.click( | |
| fn=predict_stock_interface, | |
| inputs=[symbol_input, days_input], | |
| outputs=[predictions_output, analysis_output] | |
| ) | |
| clear_button.click( | |
| fn=clear_cache, | |
| outputs=gr.Textbox(label="Status", interactive=False) | |
| ) | |
| # Launch the app | |
| if __name__ == "__main__": | |
| print("π Starting Stock Price Predictor...") | |
| print("π Models and caches will be stored locally") | |
| print("β οΈ First prediction may take 30-50 seconds (model training)") | |
| print("β Subsequent predictions will use cached models (<2 seconds)") | |
| print("\n" + "="*60) | |
| # Launch Gradio app | |
| demo.launch( | |
| server_name="0.0.0.0", | |
| server_port=7860, | |
| share=False, | |
| show_error=True, | |
| show_api=False | |
| ) | |