eaglelandsonce commited on
Commit
16e2c94
1 Parent(s): f60225b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -11
app.py CHANGED
@@ -704,18 +704,18 @@ with gr.Blocks() as demo:
704
  )
705
 
706
 
707
- with gr.Row():
708
- fig_cum_returns_optimized = gr.Plot(label="Cumulative Returns of Optimized Portfolio (Starting Price of $100)")
709
- weights_df = gr.DataFrame(label="Optimized Weights of Each Ticker")
710
 
711
-
712
- with gr.Row():
713
- fig_efficient_frontier = gr.Plot(label="Efficient Frontier")
714
- fig_corr = gr.Plot(label="Correlation between Stocks")
715
-
716
- with gr.Row():
717
- fig_indiv_prices = gr.Plot(label="Price of Individual Stocks")
718
- fig_cum_returns = gr.Plot(label="Cumulative Returns of Individual Stocks Starting with $100")
719
 
720
 
721
  # For future upgrade
 
704
  )
705
 
706
 
707
+ with gr.Row():
708
+ fig_cum_returns_optimized = gr.Plot(label="Cumulative Returns of Optimized Portfolio (Starting Price of $100)")
709
+ weights_df = gr.DataFrame(label="Optimized Weights of Each Ticker")
710
 
711
+
712
+ with gr.Row():
713
+ fig_efficient_frontier = gr.Plot(label="Efficient Frontier")
714
+ fig_corr = gr.Plot(label="Correlation between Stocks")
715
+
716
+ with gr.Row():
717
+ fig_indiv_prices = gr.Plot(label="Price of Individual Stocks")
718
+ fig_cum_returns = gr.Plot(label="Cumulative Returns of Individual Stocks Starting with $100")
719
 
720
 
721
  # For future upgrade