Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
import streamlit as st
|
2 |
-
from os import
|
3 |
|
4 |
def app():
|
5 |
st.set_page_config(page_title="Algorithmic Trading Dashboard", layout="wide", initial_sidebar_state="auto",
|
6 |
menu_items=None, page_icon=":chart_with_upwards_trend:")
|
7 |
|
8 |
-
print(f"This device has {
|
9 |
|
10 |
single_test = st.Page("page/single_backtest.py", title="Run Strategy")
|
11 |
complete_test = st.Page("page/complete_backtest.py", title="Evaluate Strategy")
|
|
|
1 |
import streamlit as st
|
2 |
+
from os import cpu_count
|
3 |
|
4 |
def app():
|
5 |
st.set_page_config(page_title="Algorithmic Trading Dashboard", layout="wide", initial_sidebar_state="auto",
|
6 |
menu_items=None, page_icon=":chart_with_upwards_trend:")
|
7 |
|
8 |
+
print(f"This device has {cpu_count()} CPUs")
|
9 |
|
10 |
single_test = st.Page("page/single_backtest.py", title="Run Strategy")
|
11 |
complete_test = st.Page("page/complete_backtest.py", title="Evaluate Strategy")
|