3
3
from exchange_data import *
4
4
from telegram .ext import CommandHandler
5
5
from telegram .ext import Updater
6
+ from dbhelper import DBHelper
6
7
7
8
updater = Updater (token = "INSERT TOKEN HERE" , use_context = True )
8
9
13
14
logging .basicConfig (format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s' ,
14
15
level = logging .INFO )
15
16
17
+
16
18
instructions = ("This is the Cryptocurrency Price Alert Bot\n " +
17
19
"To set a price alert,use the setalert command and enter an exchange, trading pair and price as follows:\n " +
18
20
"/setalert binance,btcusdc,20000\n " + "To get the current price of a coin on a supported exchange use the getprice command:\n " +
22
24
def help (update , context ):
23
25
context .bot .send_message (chat_id = update .message .chat_id , text = instructions )
24
26
25
- # /getprice command bot can fetch the price on any supported exchange
27
+ # /getprice command, bot can fetch the price on any supported exchange
26
28
def getprice (update , context ):
27
29
message_text = update .message .text [10 ::]
28
30
msg = message_text .replace (" " ,"" ).split ("," )
@@ -32,7 +34,6 @@ def getprice(update, context):
32
34
else :
33
35
context .bot .send_message (chat_id = update .message .chat_id , text = "The current price of " + msg [1 ].upper () + " on " + msg [0 ] + " is " + "{:.8f}" .format (float (ans )))
34
36
35
-
36
37
# /setalert command
37
38
def setalert (update , context ):
38
39
try :
@@ -41,44 +42,49 @@ def setalert(update, context):
41
42
context .bot .send_message (chat_id = update .message .chat_id , text = "Your Price Alert Was Not Set Successfully. Choose a valid price then try again." )
42
43
else :
43
44
context .bot .send_message (chat_id = update .message .chat_id , text = "Your Price Alert Was Set Successfully." )
44
- except :
45
+ except Exception as e :
45
46
context .bot .send_message (chat_id = update .message .chat_id , text = "Your Price Alert Was NOT Set Successfully. Try Again." )
47
+ print (e )
46
48
47
49
# checks if the alert request is valid
48
50
def is_valid_request (msg ,chat_id ):
51
+ db = DBHelper ()
52
+ db .setup ()
49
53
# remove whitespace and split the chosen exchange,trading pair and price into a list
50
54
msg = msg .replace (" " ,"" ).split ("," )
51
- cur_price = get_price (msg [0 ]. lower () ,msg [1 ]. lower () )
52
- # if request is valid, add to ' database'
55
+ cur_price = get_price (msg [0 ],msg [1 ])
56
+ # if request is valid, add to database
53
57
if cur_price != False :
54
58
if cur_price < float (msg [2 ]):
55
59
trigger = '>'
56
60
elif cur_price > float (msg [2 ]):
57
61
trigger = '<'
58
62
else :
59
63
return False
60
- f = open ("alert_requests.txt" , "a" )
61
- f .write (',' .join (msg )+ "," + str (chat_id )+ "," + trigger + '\n ' )
62
- f .close ()
64
+ row_id = len (db .get_table ()) + 1
65
+ db .add_alert ((row_id , msg [0 ], msg [1 ], msg [2 ], chat_id , trigger ))
63
66
else :
64
67
return False
65
68
66
69
# bot continuously checks if an alert has been reached
67
70
def check_prices (context ):
68
- f = open ("alert_requests.txt" , "r" )
69
- lines = f .readlines ()
70
- f .close ()
71
- f = open ("alert_requests.txt" , "w" )
72
- for line in lines :
73
- line = line .split ("," )
74
- cur_price = get_price (line [0 ].lower (),line [1 ].lower ())
75
- if line [4 ][0 ] == '>' and cur_price >= float (line [2 ]) or line [4 ][0 ] == '<' and cur_price <= float (line [2 ]):
76
- response = line [1 ].upper () + " has reached " + line [2 ] + " on " + line [0 ]
77
- context .bot .send_message (chat_id = int (line [3 ]), text = response )
78
- else :
79
- f .write ("," .join (line ))
71
+ db = DBHelper ()
72
+ db .setup ()
80
73
74
+ # Sample Row in Database: (ID, Exchange, Pair, Price, chat_id, trigger)
75
+ table = db .get_table ()
76
+ for row in table :
77
+ cur_price = get_price (row [1 ],row [2 ])
78
+ if row [5 ] == '>' and cur_price >= float (row [3 ]) or row [5 ] == '<' and cur_price <= float (row [3 ]):
79
+ response = row [2 ].upper () + " has reached " + row [3 ] + " on " + row [1 ]
80
+ db .remove_alert (row [0 ])
81
+ context .bot .send_message (chat_id = row [4 ], text = response )
82
+
81
83
if __name__ == "__main__" :
84
+ #initialize database
85
+ db = DBHelper ()
86
+ db .setup ()
87
+
82
88
# bot checks prices with an interval of every 5 seconds
83
89
job_check_prices = j .run_repeating (check_prices , interval = 5 , first = 0 )
84
90
# create and add handlers to dispatcher
0 commit comments