Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -8,10 +8,10 @@ from datetime import datetime, timedelta
|
|
| 8 |
from plotly.subplots import make_subplots
|
| 9 |
|
| 10 |
# Set Streamlit page configuration
|
| 11 |
-
st.set_page_config(page_title="
|
| 12 |
|
| 13 |
# Title and description
|
| 14 |
-
st.title("
|
| 15 |
st.write("""
|
| 16 |
This tool allows users to backtest a 3-way moving average crossover strategy across different time horizons (short-term, medium-term, and long-term).
|
| 17 |
The strategy uses three different moving averages to generate buy/sell signals when shorter-term averages cross above or below longer-term averages.
|
|
|
|
| 8 |
from plotly.subplots import make_subplots
|
| 9 |
|
| 10 |
# Set Streamlit page configuration
|
| 11 |
+
st.set_page_config(page_title="Triple Moving Average Crossover Strategy", layout="wide")
|
| 12 |
|
| 13 |
# Title and description
|
| 14 |
+
st.title("Triple Moving Average Crossover Strategy")
|
| 15 |
st.write("""
|
| 16 |
This tool allows users to backtest a 3-way moving average crossover strategy across different time horizons (short-term, medium-term, and long-term).
|
| 17 |
The strategy uses three different moving averages to generate buy/sell signals when shorter-term averages cross above or below longer-term averages.
|