加密货币市场警报系统与币安和Telegram集成
中级
这是一个Other领域的自动化工作流,包含 7 个节点。主要使用 Code, Function, Telegram, Aggregate, HttpRequest 等节点。 与币安和Telegram集成的加密货币市场警报系统
前置要求
- •Telegram Bot Token
- •可能需要目标 API 的认证凭证
分类
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"meta": {
"instanceId": "dbd43d88d26a9e30d8aadc002c9e77f1400c683dd34efe3778d43d27250dde50"
},
"nodes": [
{
"id": "f305e08e-d4b4-4ec6-be74-5edb7a3711e5",
"name": "定时触发器",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
520,
1279
],
"parameters": {
"rule": {
"interval": [
{
"field": "minutes"
}
]
}
},
"typeVersion": 1.1
},
{
"id": "abac20ef-6319-40e3-8d30-806d7499a427",
"name": "发送Telegram消息",
"type": "n8n-nodes-base.telegram",
"position": [
1360,
1279
],
"parameters": {
"text": "={{ $json.data.replaceAll(/(Last Price: \\S+)$/gm,\"$1\\n\").slice(0,1000) }}",
"chatId": "-1002138086614",
"additionalFields": {}
},
"typeVersion": 1
},
{
"id": "d23c3277-62ca-4e1f-ad5d-48c07e0d6b94",
"name": "聚合",
"type": "n8n-nodes-base.aggregate",
"notes": "Combine all items",
"position": [
1020,
1279
],
"parameters": {
"options": {},
"aggregate": "aggregateAllItemData"
},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "ba174e7f-4377-46dc-aca8-30adf81e5d61",
"name": "Binance 24小时价格变动",
"type": "n8n-nodes-base.httpRequest",
"notes": "Get data of changed price coins in last 24h",
"position": [
680,
1279
],
"parameters": {
"url": "https://api.binance.com/api/v1/ticker/24hr",
"options": {}
},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "575563d5-3fb5-40f3-8017-d015cc822d5f",
"name": "按10%变动率筛选",
"type": "n8n-nodes-base.function",
"notes": "Filter by 10% Up & Down",
"position": [
860,
1279
],
"parameters": {
"functionCode": "// Iterate over all coins and check for 10% price change\nconst significantChanges = [];\nfor (const coin of items[0].json) {\n const priceChangePercent = parseFloat(coin.priceChangePercent);\n if (Math.abs(priceChangePercent) >= 15) {\n significantChanges.push({ \n symbol: coin.symbol, \n priceChangePercent, \n lastPrice: coin.lastPrice \n });\n }\n}\n\n// Sort the items by percent rate from high to low\nsignificantChanges.sort((a, b) => b.priceChangePercent - a.priceChangePercent);\n\n// Format the sorted data for output\nconst sortedOutput = significantChanges.map(change => ({\n json: { message: `\\`\\`\\`${change.symbol} Price changed by ${change.priceChangePercent}% \\n Last Price: ${change.lastPrice}\\`\\`\\`` }\n}));\n\nreturn sortedOutput;\n"
},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "dcfeae2e-bcdd-472d-98e4-8c1772ccdf1b",
"name": "按1K字符分割",
"type": "n8n-nodes-base.code",
"notes": "Split them for telegram message limit",
"position": [
1180,
1279
],
"parameters": {
"jsCode": "// Function to split the data into chunks of approximately 1000 characters\nfunction splitDataIntoChunks(data) {\n const chunks = [];\n let currentChunk = \"\";\n\n data.forEach(item => {\n // Ensure that each item has a 'message' property\n if (item && item.message) {\n const message = item.message + \"\\n\"; // Adding a newline for separation\n // Check if adding this message to the current chunk would exceed the 1000 characters limit\n if (currentChunk.length + message.length > 1000) {\n // If so, push the current chunk to the chunks array and start a new chunk\n chunks.push({ json: { data: currentChunk } });\n currentChunk = message;\n } else {\n // Otherwise, add the message to the current chunk\n currentChunk += message;\n }\n }\n });\n\n // Add the last chunk if it's not empty\n if (currentChunk) {\n chunks.push({ json: { data: currentChunk } });\n }\n\n return chunks;\n}\n\n// The input data is passed from the previous node\nconst inputData = items[0].json.data; // Accessing the 'data' property\n\n// Process the data\nconst result = splitDataIntoChunks(inputData);\n\n// Output the result\nreturn result;\n"
},
"notesInFlow": true,
"typeVersion": 2
},
{
"id": "40e25c71-641a-4b69-afec-b8a93d5d6448",
"name": "便签",
"type": "n8n-nodes-base.stickyNote",
"position": [
483.54457851446114,
1040
],
"parameters": {
"color": 5,
"width": 1040.928205084989,
"height": 183.94838465674636,
"content": "### 工作流设置步骤:"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"Aggregate": {
"main": [
[
{
"node": "Split By 1K chars",
"type": "main",
"index": 0
}
]
]
},
"Schedule Trigger": {
"main": [
[
{
"node": "Binance 24h Price Change",
"type": "main",
"index": 0
}
]
]
},
"Split By 1K chars": {
"main": [
[
{
"node": "Send Telegram Message",
"type": "main",
"index": 0
}
]
]
},
"Binance 24h Price Change": {
"main": [
[
{
"node": "Filter by 10% Change rate",
"type": "main",
"index": 0
}
]
]
},
"Filter by 10% Change rate": {
"main": [
[
{
"node": "Aggregate",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
中级 - 其他
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
生日和星历通知
生日和星历通知 (Google联系人、Telegram和Home Assistant)
If
Set
Code
+8
26 节点Thibaud
其他
为您的电子邮件生成可视化摘要和知识图谱洞察
为您的电子邮件生成可视化摘要和知识图谱洞察
If
Set
Code
+13
38 节点InfraNodus
其他
您喜爱频道的高级YouTube RSS Feed伙伴
通过RSS源监控喜爱的YouTube频道并接收通知
Set
Code
Gmail
+13
41 节点Joseph LePage
其他
AI 代理餐厅 [模板]
🤖 WhatsApp、Instagram 和 Messenger 的 AI 餐厅助手
If
N8n
Set
+37
239 节点Amanda Benks
其他
通过GitHub Gist临时HTML URL将邮件通知发送至Telegram
通过GitHub Gist临时HTML URL将邮件通知发送至Telegram
Wait
Telegram
Http Request
+2
7 节点Nskha
其他
灵活新闻聚合器 - 多源集成、AI分析和可设置频道
多源新闻策展系统,集成Mistral AI分析、摘要和自定义频道
If
Set
Xml
+32
120 节点Hybroht
内容创作
工作流信息
难度等级
中级
节点数量7
分类1
节点类型7
作者
Nskha
@nskhaWelcome to Nskha! We're all about making real changes in the no-code tech field, just like with N8N 😉. Check out our amazing collection of free public templates and join us in building a collaborative database of no-code idea projects. Let's revolutionize the way we create without code!
外部链接
在 n8n.io 查看 →
分享此工作流