Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -233,7 +233,7 @@ if run_button or "data" in st.session_state:
|
|
| 233 |
fig.add_hline(y=30, line_dash="dash", row=2, col=1, line_color="green")
|
| 234 |
|
| 235 |
# Equity Curve
|
| 236 |
-
fig.add_trace(go.Scatter(x=updated_data.index, y=updated_data['Equity_Curve'], mode='lines', name='Equity Curve', line=dict(color='
|
| 237 |
|
| 238 |
fig.update_layout(title=f'{ticker} Bollinger Bands and RSI Strategy', xaxis_title='Date', height=800)
|
| 239 |
|
|
|
|
| 233 |
fig.add_hline(y=30, line_dash="dash", row=2, col=1, line_color="green")
|
| 234 |
|
| 235 |
# Equity Curve
|
| 236 |
+
fig.add_trace(go.Scatter(x=updated_data.index, y=updated_data['Equity_Curve'], mode='lines', name='Equity Curve', line=dict(color='white')), row=3, col=1)
|
| 237 |
|
| 238 |
fig.update_layout(title=f'{ticker} Bollinger Bands and RSI Strategy', xaxis_title='Date', height=800)
|
| 239 |
|