Missing comma (#38)
Browse files- Missing comma (f404eb317304572f45b7ccf9f565bee2f0b960e9)
Co-authored-by: Warren Borders <wborders@users.noreply.huggingface.co>
plots.py
CHANGED
@@ -187,7 +187,7 @@ def display_heat_map(stock_df,choices):
|
|
187 |
# st.subheader('Portfolio Historical Cumulative Returns Based On Inputs!')
|
188 |
# st.line_chart(cumulative_profit)
|
189 |
def buble_interactive(stock_df,choices):
|
190 |
-
symbols, weights, benchmark, investing_style rf, A_coef = choices.values()
|
191 |
beta,cash_value_weights = ER(stock_df,choices)
|
192 |
my_list = []
|
193 |
my_colors = []
|
|
|
187 |
# st.subheader('Portfolio Historical Cumulative Returns Based On Inputs!')
|
188 |
# st.line_chart(cumulative_profit)
|
189 |
def buble_interactive(stock_df,choices):
|
190 |
+
symbols, weights, benchmark, investing_style, rf, A_coef = choices.values()
|
191 |
beta,cash_value_weights = ER(stock_df,choices)
|
192 |
my_list = []
|
193 |
my_colors = []
|