Spaces:
Running
Running
File size: 2,169 Bytes
7015834 9258ba6 7015834 |
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 |
import streamlit as st
# Page configuration
st.set_page_config(
page_title="Trading App",
page_icon="π",
layout="wide"
)
# Title and Header
st.title("Trading App π")
st.header("Empowering Your Investment Journey")
# Introduction with quotes
st.subheader("βAn investment in knowledge pays the best interest.β β Benjamin Franklin")
st.write("Welcome to the **Trading App**, your trusted companion in navigating the financial markets. Whether you're a seasoned investor or just starting, our platform offers all the tools and insights you need to make informed decisions.")
# Stock Image
st.image('stock_image.jpg', use_container_width=True)
# Overview of App Features
st.markdown("## What We Offer")
st.write("""
Our app is designed to cater to every step of your investment process:
- **Stock Information Page**: Learn about key financial metrics, historical data, and current stock trends.
- **Stock Analysis Page**: Dive deep into stock fundamentals and explore technical analysis tools.
- **Stock Prediction Page**: Use advanced machine learning models to predict future stock performance.
""")
# Add a motivational quote
st.markdown("### π Quote of the Day")
st.info("βThe stock market is filled with individuals who know the price of everything but the value of nothing.β β Philip Fisher")
st.markdown("### π Did You Know?")
st.write("""
The New York Stock Exchange (NYSE) is the largest stock exchange in the world by market capitalization,
with a total value exceeding **$25 trillion**! Understanding the markets begins with knowing the incredible scale of global finance.
""")
# App Navigation Details
st.markdown("### How to Get Started")
st.write("""
1. Navigate to the **Stock Information** page to explore comprehensive stock details.
2. Move to the **Stock Analysis** page for in-depth analysis of your favorite stocks.
3. Visit the **Stock Prediction** page to forecast stock prices using cutting-edge technology.
""")
# Footer
st.markdown("---")
st.markdown("### Ready to take charge of your financial future? π")
st.markdown("βThe best time to invest was yesterday. The second-best time is today!β")
|