graph LR
Start(["`Start`"])
1["`<strong>set</strong><br>config`"]
2["`<strong>binance</strong><br>fetch kline`"]
3["`<strong>taIndicators</strong><br>calculate average volume`"]
4{"`<strong>if</strong><br>If volume spike detected`"}
5["`<strong>telegram</strong><br>send volume spike alert`"]
Start ---> 1
1 ---> 2
2 ---> 3
3 ---> 4
4 ---> 5
Get alerted when trading volume suddenly spikes, which often signals important market movements or trading opportunities.
This workflow is designed for traders who want to identify unusual trading activity and potential market movements by detecting sudden volume spikes.
Volume spikes often precede significant price movements, but manually monitoring trading volume is time-consuming and you might miss these critical signals. This workflow automatically calculates average volume over a lookback period and detects when current volume exceeds the average by a specified multiplier, helping you identify potential trading opportunities early.
Fetches OHLCV data for the specified symbol and interval
Calculates the average volume over the lookback period
Compares the current volume with the average volume
Detects a volume spike when current volume exceeds the average by the specified multiplier
Sends a Telegram notification with spike details including current volume and average volume
Set the Symbol in the config node (e.g., "BTCUSDT")
Set the Interval in the config node (e.g., "1h", default: "1h")
Set the Lookback Period in the config node (default: 20)
Set the Spike Multiplier in the config node (default: 2)
Binance - Get OHLCV Data: Fetches historical OHLCV (Open, High, Low, Close, Volume) data for technical analysis
TaIndicators - Call Technical Indicator: Generic function to call any technical indicator by name with parameters
Telegram - Send Telegram Message: Sends text messages through Telegram's bot API using _chatId, message, and optional parameters
Tip: This executable workflow was automatically generated by SeamFlux Bot. To use it, create an execution and test it with your data to ensure it meets your needs.
Ready to get started?
to run this template or create a scheduled task, and ask AI about detailed node execution steps.
Run Locally — download this workflow as a ZIP or run it via Seamflux CLI in your terminal; use the "Run Locally" button above to choose.
Build a workflow from scratch using AI chat. No complex parameter configuration or flowchart dragging needed.