Setting alerts and automation workflows
Platform‑by‑platform cheat sheet
Tool
How I wire the alert
What lands on my phone
pythonCopyEditimport requests, json, time
def tg(msg):
url = f"https://api.telegram.org/bot{TOKEN}/sendMessage"
requests.post(url, json={"chat_id": CHAT, "text": msg})
# call tg(f"BTC long filled @ {price}")Workflow I run in live trade
Last updated