Skip to main content

Binance SM indicators webhook tool

Workflow preview

Workflow preview
100%
Binance SM indicators webhook tool preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

This workflow acts as a central API gateway for all technical indicator agents in the Binance Spot Market Quant AI system . It listens for incoming webhook requests and dynamically routes them to t...

Best for

  • Crypto Trading automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.httprequest, n8n-nodes-base.webhook, n8n-nodes-base.code, n8n-nodes-base.merge, n8n-nodes-base.respondtowebhook, n8n-nodes-base.stickynote

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Don Jayamaha Jr.

Original n8n.io source

1.1 Workflow description

Title
Binance SM indicators webhook tool
Workflow name
Binance SM indicators webhook tool

This workflow acts as a central API gateway for all technical indicator agents in the Binance Spot Market Quant AI system. It listens for incoming webhook requests and dynamically routes them to the correct timeframe-based indicator tool (15m, 1h, 4h, 1d). Designed to power multi-timeframe analysis at scale.

πŸŽ₯ Watch Tutorial:


🎯 What It Does

  • Accepts requests via webhook with a token symbol and timeframe
  • Forwards requests to the correct internal technical indicator tool
  • Returns a clean JSON payload with RSI, MACD, BBANDS, EMA, SMA, and ADX
  • Can be used directly or as a microservice by other agents

πŸ› οΈ Input Format

Webhook endpoint:

POST /webhook/indicators

Body format:

{
  "symbol": "DOGEUSDT",
  "timeframe": "15m"
}

πŸ”„ Routing Logic

Timeframe Routed To
15m Binance SM 15min Indicators Tool
1h Binance SM 1hour Indicators Tool
4h Binance SM 4hour Indicators Tool
1d Binance SM 1day Indicators Tool

πŸ”Ž Use Cases

Use Case Description
πŸ”— Used by Binance Financial Analyst Tool Automatically triggers all indicator tools in parallel
πŸ€– Integrated in Binance Quant AI System Supports reasoning, signal generation, and summaries
βš™οΈ Can be called independently for raw data access Useful for dashboards or advanced analytics

πŸ“€ Output Example

{
  "symbol": "DOGEUSDT",
  "timeframe": "15m",
  "rsi": 56.7,
  "macd": "Bearish Crossover",
  "bbands": "Stable",
  "ema": "Price above EMA",
  "adx": 19.4
}

βœ… Prerequisites

  • Make sure all the following workflows are installed and operational:

    • Binance SM 15min Indicators Tool
    • Binance SM 1hour Indicators Tool
    • Binance SM 4hour Indicators Tool
    • Binance SM 1day Indicators Tool
  • OpenAI credentials (for any agent using LLM formatting)


🧾 Licensing & Attribution

Β© 2025 Treasurium Capital Limited Company All architectural routing logic and endpoint structuring is IP-protected. No unauthorized rebranding or resale permitted.

πŸ”— Need help? Connect on LinkedIn – Don Jayamaha

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - HTTP Request

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 2 - Webhook 15m Indicators

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2

Block 3 - Merge Into 1 Array

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 4 - Calculate Bollinger Bands

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 5 - Calculate RSI

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 6 - Calculate MACD

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 7 - Calculate SMA

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - Calculate EMA

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - Calculate ADX

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 10 - Merge 15 min Indicators

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.1

Block 11 - Respond to 15m Webhook

Type / Role
n8n-nodes-base.respondToWebhook - respondToWebhook
Config choices
Version 1.3

Block 12 - Webhook 1h Indicators

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2

Block 13 - Respond to 1h Webhook

Type / Role
n8n-nodes-base.respondToWebhook - respondToWebhook
Config choices
Version 1.3

Block 14 - Merge 1h Indicators

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.1

Block 15 - Merge Into 1 Array 1h

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 16 - Calculate Bollinger Bands(1h)

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 17 - Calculate RSI(1h)

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 18 - Calculate MACD(1h)

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 19 - Calculate SMA(1h)

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 20 - Calculate EMA(1h)

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 21 - Calculate ADX1

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 22 - HTTP Request 1h

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 23 - Webhook 4h Indicators

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2

Block 24 - HTTP Request 4h

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Showing the first 24 of 69 workflow blocks. Download the JSON for the full node graph.

3. Summary Table

Workflow Binance SM indicators webhook tool
Complexity advanced
Nodes 69
Categories Crypto Trading
Author Don Jayamaha Jr
Published 06 Jun 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/4747/4747.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Binance SM indicators webhook tool do?

This workflow acts as a central API gateway for all technical indicator agents in the Binance Spot Market Quant AI system . It listens for incoming webhook requests and dynamically routes them to t...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Crypto Trading use case.