Lirsen Myrtaj commited on
Commit
06681a3
1 Parent(s): c40f0f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -34,6 +34,11 @@ from sharp_ratio import(
34
  sharp_ratio_func
35
  )
36
 
 
 
 
 
 
37
 
38
 
39
  def load_heading():
@@ -258,6 +263,7 @@ The Heat map shows the correlation coefficient or value for each asset over the
258
  It also depicts the color of the intersection as darker for less correlation and lighter for more correlation, which could be either positive or negative.
259
  The legend on the right indicates the absolute level of correlation for each color, again positive or negative associated to each color.\n
260
  """
 
261
 
262
  display_heat_map(choices['data'],choices['choices'])
263
  #display_portfolio_return(choices['combined_df'], choices['choices'])
 
34
  sharp_ratio_func
35
  )
36
 
37
+ from arima import (
38
+ get_model_accuracy,
39
+ arima_chart
40
+ )
41
+
42
 
43
 
44
  def load_heading():
 
263
  It also depicts the color of the intersection as darker for less correlation and lighter for more correlation, which could be either positive or negative.
264
  The legend on the right indicates the absolute level of correlation for each color, again positive or negative associated to each color.\n
265
  """
266
+ arima_chart(choices['choices'])
267
 
268
  display_heat_map(choices['data'],choices['choices'])
269
  #display_portfolio_return(choices['combined_df'], choices['choices'])