markytools commited on
Commit
41fee50
·
1 Parent(s): c825ac3
Files changed (2) hide show
  1. app.py +44 -0
  2. requirements.txt +4 -0
app.py ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import yfinance as yf
3
+ import pandas as pd
4
+ import plotly.graph_objs as go
5
+
6
+ # Set the Streamlit app title and icon
7
+ st.set_page_config(page_title="Stock Analysis", page_icon="📈")
8
+
9
+ # Define the Streamlit app
10
+ def main():
11
+ # Create a Streamlit sidebar for user input
12
+ st.sidebar.title("Stock Analysis")
13
+ ticker_symbol = st.sidebar.text_input("Enter Stock Ticker Symbol:", value='AAPL')
14
+ start_date = st.sidebar.date_input("Start Date", pd.to_datetime('2020-01-01'))
15
+ end_date = st.sidebar.date_input("End Date", pd.to_datetime('2021-01-01'))
16
+
17
+ # Fetch stock data from Yahoo Finance
18
+ try:
19
+ stock_data = yf.download(ticker_symbol, start=start_date, end=end_date)
20
+ except Exception as e:
21
+ st.error("Error fetching stock data. Please check the ticker symbol and date range.")
22
+ return
23
+
24
+ # Display basic stock information
25
+ st.header(f"Stock Analysis for {ticker_symbol}")
26
+ st.subheader("Basic Stock Information")
27
+ st.write(stock_data.tail())
28
+
29
+ # Plot a candlestick chart
30
+ st.subheader("Candlestick Chart")
31
+ fig = go.Figure(data=[go.Candlestick(x=stock_data.index,
32
+ open=stock_data['Open'],
33
+ high=stock_data['High'],
34
+ low=stock_data['Low'],
35
+ close=stock_data['Close'])])
36
+ fig.update_layout(title=f'{ticker_symbol} Candlestick Chart', xaxis_title='Date', yaxis_title='Price')
37
+ st.plotly_chart(fig)
38
+
39
+ # Perform more advanced analysis here
40
+ # You can add more Streamlit components and analysis tools as needed
41
+
42
+ # Run the Streamlit app
43
+ if __name__ == '__main__':
44
+ main()
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ streamlit
2
+ yfinance
3
+ pandas
4
+ plotly