ビットコインとイーサリアムの下落アラート(Telegram、Slack、SMS)

中級

これはCrypto Trading, Miscellaneous, Multimodal AI分野の自動化ワークフローで、8個のノードを含みます。主にIf, Code, Slack, Twilio, Telegramなどのノードを使用。 Telegram、Slack、SMS 経由でビットコインとイーサリアムの下落アラートを送信

前提条件
  • Slack Bot Token または Webhook URL
  • Telegram Bot Token
  • ターゲットAPIの認証情報が必要な場合あり
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "meta": {
    "instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "951eaf83-d275-4236-8811-a718d480f0d6",
      "name": "30分ごと",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        0,
        0
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "minutes"
            }
          ]
        }
      },
      "typeVersion": 1.1
    },
    {
      "id": "d67348c4-bc2d-4509-a59f-c4bfcc021ffa",
      "name": "暗号通貨価格取得",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        208,
        0
      ],
      "parameters": {
        "url": "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum&vs_currencies=usd&include_24hr_change=true",
        "options": {}
      },
      "typeVersion": 4.1
    },
    {
      "id": "ab4554ee-10d4-473c-8643-a01700417acd",
      "name": "下落チェック",
      "type": "n8n-nodes-base.code",
      "position": [
        400,
        0
      ],
      "parameters": {
        "jsCode": "const DIP=-2.5; // alert if 24h drop is <= -2.5%\nconst j=$json; const btc=Number(j.bitcoin?.usd_24h_change), eth=Number(j.ethereum?.usd_24h_change);\nreturn [{json:{\n  dip: (isFinite(btc)&&btc<=DIP) || (isFinite(eth)&&eth<=DIP),\n  text:`Dip Alert — BTC ${btc?.toFixed?.(2)}%, ETH ${eth?.toFixed?.(2)}%`\n}}];"
      },
      "typeVersion": 2
    },
    {
      "id": "8000fbce-7429-4b80-8db3-02d1bbf9af7a",
      "name": "下落発生?",
      "type": "n8n-nodes-base.if",
      "position": [
        592,
        0
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "version": 1,
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "strict"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "8381a709-5104-40bc-bf81-b4c37dcce05c",
              "operator": {
                "name": "filter.operator.equals",
                "type": "string",
                "operation": "equals"
              },
              "leftValue": "",
              "rightValue": ""
            }
          ]
        }
      },
      "typeVersion": 2
    },
    {
      "id": "7b1d6277-0f79-408c-b584-e0009ecf7682",
      "name": "Telegram送信",
      "type": "n8n-nodes-base.telegram",
      "position": [
        944,
        96
      ],
      "webhookId": "ee6fdc04-32a4-4f7f-925b-c4c4939d2e2c",
      "parameters": {
        "text": "={{ $json.text }}\n_Not financial advice._",
        "chatId": "@your_channel_or_chatid",
        "additionalFields": {}
      },
      "credentials": {
        "telegramApi": {
          "id": "z5KZFRpyGmxhASqz",
          "name": "zmeena2"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "5db76eac-660a-4610-b8ad-11d0b386f8c6",
      "name": "付箋メモ",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -464,
        -176
      ],
      "parameters": {
        "width": 640,
        "height": 496,
        "content": "## 📉 Buy the Dip Alert (Telegram/Slack/SMS)\n\n**What it does:**  \nSends an alert when **BTC/ETH** 24h change falls below your dip threshold (default: **–2.5%**). Helps you catch big red days without watching charts all day.\n\n**Trigger:**  \nEvery **30 minutes** (adjust cron as needed).\n\n**Nodes:**  \nSchedule → CoinGecko → **Code (check dip %)** → IF → **Telegram/Slack/Twilio**\n\n**How to customize:**  \n- Change `DIP` value in **Code node** (default: `-2.5`).  \n- Pick your delivery channel (Telegram DM/channel, Slack channel, Twilio SMS).  \n- Alert text is auto-formatted with % changes.\n\n**Example Output:**  \n“Dip Alert — BTC –3.2%, ETH –2.8%”  \n\n**Author:** David Olusola  \n**Trading & 1:1 consulting:** [sales@daexai.com](mailto:sales@daexai.com)\n"
      },
      "typeVersion": 1
    },
    {
      "id": "80a32dd7-a061-43ce-b39e-df649de613a1",
      "name": "メッセージ送信",
      "type": "n8n-nodes-base.slack",
      "position": [
        944,
        -192
      ],
      "webhookId": "2c9274fd-cc04-4ebb-a2e6-d0dfb1a606d2",
      "parameters": {
        "text": "={{ $json.text }} _Not financial advice._",
        "otherOptions": {},
        "authentication": "oAuth2"
      },
      "credentials": {
        "slackOAuth2Api": {
          "id": "rCOUwK3276xqTfQi",
          "name": "Slack account"
        }
      },
      "typeVersion": 2.3
    },
    {
      "id": "4d05702b-2246-40cd-9596-f4d70625d891",
      "name": "SMS/MMS/WhatsAppメッセージ送信",
      "type": "n8n-nodes-base.twilio",
      "position": [
        976,
        -32
      ],
      "parameters": {
        "message": "={{ $json.text }} _Not financial advice._",
        "options": {}
      },
      "typeVersion": 1
    }
  ],
  "pinData": {},
  "connections": {
    "8000fbce-7429-4b80-8db3-02d1bbf9af7a": {
      "main": [
        [
          {
            "node": "80a32dd7-a061-43ce-b39e-df649de613a1",
            "type": "main",
            "index": 0
          },
          {
            "node": "7b1d6277-0f79-408c-b584-e0009ecf7682",
            "type": "main",
            "index": 0
          },
          {
            "node": "4d05702b-2246-40cd-9596-f4d70625d891",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "ab4554ee-10d4-473c-8643-a01700417acd": {
      "main": [
        [
          {
            "node": "8000fbce-7429-4b80-8db3-02d1bbf9af7a",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "7b1d6277-0f79-408c-b584-e0009ecf7682": {
      "main": [
        []
      ]
    },
    "80a32dd7-a061-43ce-b39e-df649de613a1": {
      "main": [
        []
      ]
    },
    "951eaf83-d275-4236-8811-a718d480f0d6": {
      "main": [
        [
          {
            "node": "d67348c4-bc2d-4509-a59f-c4bfcc021ffa",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "d67348c4-bc2d-4509-a59f-c4bfcc021ffa": {
      "main": [
        [
          {
            "node": "ab4554ee-10d4-473c-8643-a01700417acd",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

このワークフローの使い方は?

上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。

このワークフローはどんな場面に適していますか?

中級 - 仮想通貨取引, その他, マルチモーダルAI

有料ですか?

このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。

関連ワークフロー

CoinGeckoとExchangeRate-APIを使用してBTC-ETH価格と為替レートAPIを作成
CoinGeckoとExchangeRate-APIを使用してBTC/ETH価格とドル為替レートAPIを作成
Code
Merge
Webhook
+
Code
Merge
Webhook
7 ノードDavid Olusola
仮想通貨取引
Telegramフォーラムペルス:コミュニティモニタリングのためのGeminiとGroq AIモデル
Telegramフォーラムペルス:GeminiとGroq AIモデルを使ったコミュニティ監視
If
Set
Code
+
If
Set
Code
59 ノードNguyen Thieu Toan
その他
Gemini、Tavily および人間の審査を使用して SEO 最適化された WordPress ブログを生成
Gemini、Tavily、そして人間の審査を使ってSEO最適化されたWordPressブログを生成する
If
Set
Code
+
If
Set
Code
38 ノードAryan Shinde
コンテンツ作成
株式分析テンプレート
株式市場のインサイトを生成するために、技術分析、AI、Telegram を組み合わせて発表
If
Set
Code
+
If
Set
Code
25 ノードSergey Skorobogatov
仮想通貨取引
CoinGecko トップコイン
CoinGeckoから自動のに人気の暗号通貨更新情報をTelegramに送稿
Function
Telegram
Http Request
+
Function
Telegram
Http Request
6 ノードCryptooChai
仮想通貨取引
NewsAPIとGoogle Geminiを使用してテクノロジーニュースブログ記事を自動生成し、WordPressに公開
NewsAPIとGoogle Geminiを使用して自動のにテクノロジーニュースブログ記事を生成し、WordPressに投稿
Code
Wordpress
Http Request
+
Code
Wordpress
Http Request
9 ノードDavid Olusola
コンテンツ作成
ワークフロー情報
難易度
中級
ノード数8
カテゴリー3
ノードタイプ8
難易度説明

経験者向け、6-15ノードの中程度の複雑さのワークフロー

作成者
David Olusola

David Olusola

@dae221

I help ambitious businesses eliminate operational bottlenecks and scale faster with AI automation. My clients typically see 40-60% efficiency gains within 90 days. Currently accepting 3 new projects this quarter - david@daexai.com

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34