graph LR
Start(["`Start`"])
1["`<strong>set</strong><br>config`"]
2["`<strong>binance</strong><br>fetch kline`"]
3["`<strong>taIndicators</strong><br>calculate rsi`"]
4{"`<strong>if</strong><br>If oversold`"}
5["`<strong>telegram</strong><br>send oversold alert`"]
Start ---> 1
1 ---> 2
2 ---> 3
3 ---> 4
4 ---> 5
Get alerted when prices are oversold (potential buying opportunity) or overbought (potential selling opportunity) based on RSI indicators.
This workflow is designed for traders who want to identify potential buying and selling opportunities based on RSI (Relative Strength Index) momentum indicators without constantly monitoring the markets.
Manually calculating RSI indicators and monitoring oversold/overbought conditions is time-consuming and requires technical analysis knowledge. You might miss trading opportunities when RSI signals favorable entry or exit points. This workflow automatically calculates RSI values and sends alerts when prices reach oversold (potential buying opportunity) or overbought (potential selling opportunity) levels.
Fetches OHLCV (candlestick) data for the specified symbol and interval
Calculates the RSI indicator based on the specified period
Compares the RSI value with oversold and overbought thresholds
Triggers an alert when RSI falls below the oversold threshold or rises above the overbought threshold
Sends a Telegram notification with RSI value and market condition
Set the Symbol in the config node (e.g., "BTCUSDT")
Set the Interval in the config node (e.g., "1h", default: "1h")
Set the RSI Period in the config node (default: 14)
Set the Oversold Threshold in the config node (default: 30)
Set the Overbought Threshold in the config node (default: 70)
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.