JohnsonMLEngineer commited on
Commit
25cf2f8
·
verified ·
1 Parent(s): 03d6888

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +32 -0
app.py ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import MetaTrader5 as mt
2
+ import streamlit as st
3
+ from datetime import datetime
4
+
5
+ # Streamlit app title
6
+ st.title("MetaTrader 5 Login")
7
+
8
+ # Streamlit input fields
9
+ login = st.text_input("Login ID", type="number")
10
+ password = st.text_input("Password", type="password")
11
+ server = st.text_input("Server")
12
+
13
+ # Button to initialize and log in
14
+ if st.button("Initialize and Log In"):
15
+ # Initialize MetaTrader 5
16
+ initialized = mt.initialize()
17
+ if initialized:
18
+ st.success("MetaTrader 5 initialized successfully.")
19
+
20
+ # Attempt to log in
21
+ logged_in = mt.login(login=int(login), password=password, server=server)
22
+ if logged_in:
23
+ st.success(f"Logged in successfully as {login}.")
24
+ else:
25
+ st.error("Failed to log in. Please check your credentials.")
26
+ else:
27
+ st.error("Failed to initialize MetaTrader 5.")
28
+
29
+ # Button to shutdown MetaTrader 5
30
+ if st.button("Shutdown MetaTrader 5"):
31
+ mt.shutdown()
32
+ st.success("MetaTrader 5 has been shut down.")