Update gradio_app.py
Browse files- gradio_app.py +9 -0
gradio_app.py
CHANGED
@@ -65,6 +65,15 @@ with gr.Blocks(fill_width=True) as app:
|
|
65 |
outputs=[signal_plot, backtest_plot]
|
66 |
)
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
btn = gr.Button("Run")
|
69 |
|
70 |
with gr.Row():
|
|
|
65 |
outputs=[signal_plot, backtest_plot]
|
66 |
)
|
67 |
|
68 |
+
examples = gr.Examples(
|
69 |
+
examples=[
|
70 |
+
["Reliance Industries Limited", "Order Block", 10],
|
71 |
+
["Reliance Industries Limited", "Order Block with EMA", 10],
|
72 |
+
["Reliance Industries Limited", "Structure trading", 20],
|
73 |
+
],
|
74 |
+
example_labels=['Order Block', 'Order Block with EMA', 'Structure trading'],
|
75 |
+
)
|
76 |
+
|
77 |
btn = gr.Button("Run")
|
78 |
|
79 |
with gr.Row():
|