QuantumLearner commited on
Commit
38f2bbe
·
verified ·
1 Parent(s): a62ebde

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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='black')), row=3, col=1)
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