kopia lustrzana https://github.com/fabston/TradingView-Webhook-Bot
add security code
rodzic
8d57704b12
commit
02a8529fc4
|
@ -10,6 +10,8 @@ whitelisted = [
|
|||
'buy alert', 'sell alert'
|
||||
]
|
||||
|
||||
sec_code = ''
|
||||
|
||||
# Telegram Settings
|
||||
send_telegram_alerts = False
|
||||
tg_token = '' # Bot token. Get it from @Botfather
|
||||
|
|
2
main.py
2
main.py
|
@ -18,7 +18,7 @@ def webhook():
|
|||
if request.method == 'POST':
|
||||
data = request.get_data(as_text=True)
|
||||
for whitelisted in config.whitelisted:
|
||||
if whitelisted.lower() in data.lower():
|
||||
if whitelisted.lower() in data.lower() and config.sec_code in data:
|
||||
print('[✓]', timestamp, 'Alert Received & Sent!\n>', data)
|
||||
send_alert(data)
|
||||
return 'Sent alert', 200
|
||||
|
|
Ładowanie…
Reference in New Issue