eagle0504 commited on
Commit
d7c8821
·
verified ·
1 Parent(s): 0fc066d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md CHANGED
@@ -11,3 +11,89 @@ license: mit
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
14
+
15
+ # 📈 MACD Trading Strategy Simulator
16
+
17
+ This app simulates a trading strategy using the Moving Average Convergence Divergence (MACD) technical indicator. It allows users to input a stock ticker, start date, and end date to download stock data and visualize the strategy using candlestick charts and MACD indicators. The app marks bullish crossovers with green triangles up and bearish crossovers with red triangles down.
18
+
19
+ ## 🖥️ App
20
+
21
+ The app is currently deployed to [this app](https://technical-trader.streamlit.app/).
22
+
23
+ ## Features
24
+
25
+ - **Stock Ticker Input**: Enter any valid stock ticker to analyze.
26
+ - **Date Range Selection**: Choose a start and end date for your analysis.
27
+ - **Candlestick Chart**: Visualizes the stock price movements.
28
+ - **MACD Indicator**: Shows the MACD line, signal line, and crossovers.
29
+ - **Crossover Indicators**: Bullish crossovers are marked with green triangles up, and bearish crossovers with red triangles down.
30
+
31
+ ## 🚀 Getting Started
32
+
33
+ To run the app locally, follow these simple steps:
34
+
35
+ ### Prerequisites
36
+
37
+ Ensure you have Python installed on your machine. This app was developed using Python 3.8, but it should work on most Python 3.x versions.
38
+
39
+ ### Installation
40
+
41
+ 1. **Clone the repository**
42
+
43
+ ```sh
44
+ git clone https://your-repository-url.git
45
+ cd your-repository-directory
46
+ ```
47
+
48
+ 2. **Create and activate a virtual environment (optional but recommended)**
49
+
50
+ For Windows:
51
+ ```sh
52
+ python -m venv venv
53
+ .\venv\Scripts\activate
54
+ ```
55
+
56
+ For macOS and Linux:
57
+ ```sh
58
+ python3 -m venv venv
59
+ source venv/bin/activate
60
+ ```
61
+
62
+ 3. **Install the requirements**
63
+
64
+ ```sh
65
+ pip install -r requirements.txt
66
+ ```
67
+
68
+ ### Running the App
69
+
70
+ After installation, you can run the app using Streamlit:
71
+
72
+ ```sh
73
+ streamlit run app.py
74
+ ```
75
+
76
+ Open your web browser and go to `http://localhost:8501` to view the app.
77
+
78
+ ## 📚 Documentation
79
+
80
+ For more information about the used libraries, visit:
81
+
82
+ - [Streamlit Documentation](https://docs.streamlit.io)
83
+ - [yfinance on PyPI](https://pypi.org/project/yfinance/)
84
+ - [Pandas Documentation](https://pandas.pydata.org/docs/)
85
+ - [Plotly Python Graphing Library](https://plotly.com/python/)
86
+
87
+ ## 🤝 Contributing
88
+
89
+ Contributions, issues, and feature requests are welcome!
90
+
91
+ Feel free to check the [issues page](https://your-repository-url/issues).
92
+
93
+ ## ✨ Show your support
94
+
95
+ Give a ⭐️ if this project helped you!
96
+
97
+ ## 📝 License
98
+
99
+ Distributed under the MIT License. See `LICENSE` for more information.