forked from thorjeus/NuBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMenu.py
42 lines (39 loc) · 2.52 KB
/
Menu.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import Analiz
import Balance
import Strategy_RSI
import Strategy_PingPong
import Strategy_PingPong2
import Strategy_PingPong_SMA
import Strategy_PingPong_SMA_TSL
import Strategy_BB
import Strategy_SD
def menu():
print("\n Welcome in NuBot_Phyton \n \n \t 1. Analiz and Signal \n \t 2. Strategy RSI \n \t 3. Strategy PingPong \n \t 4. Strategy PingPong2 \n \t 5. Strategy PingPong with SMA \n \t 6. Strategy PingPong with SMA TSL \n \t 7. Strategy BB \n \t 8. Strategy Scalping Depth \n \t 9. Balance")
choice = input()
if choice == "1":
print("Start Analiz and Signal \n------------------------------------------------------------------------------------------------------------------------------------")
Analiz.StartAnaliz()
if choice == "2":
print("Strategy RSI \n------------------------------------------------------------------------------------------------------------------------------------")
Strategy_RSI.Strategy_RSI()
if choice == "3":
print("Strategy PingPong \n------------------------------------------------------------------------------------------------------------------------------------")
Strategy_PingPong.Strategy_PingPong()
if choice == "4":
print("Strategy PingPong \n------------------------------------------------------------------------------------------------------------------------------------")
Strategy_PingPong2.Strategy_PingPong2()
if choice == "5":
print("Strategy PingPong with SMA \n------------------------------------------------------------------------------------------------------------------------------------")
Strategy_PingPong_SMA.Strategy_PingPong_SMA()
if choice == "6":
print("Strategy PingPong with SMA Trading Stop Loss \n------------------------------------------------------------------------------------------------------------------------------------")
Strategy_PingPong_SMA_TSL.Strategy_PingPong_SMA_TSL()
if choice == "7":
print("Strategy BB \n------------------------------------------------------------------------------------------------------------------------------------")
Strategy_BB.Strategy_BB()
if choice == "8":
print("Strategy Scalping Depth \n------------------------------------------------------------------------------------------------------------------------------------")
Strategy_SD.Strategy_Scalping_Depth()
if choice == "9":
print("Balance Account \n------------------------------------------------------------------------------------------------------------------------------------")
Balance.MyBalance()