The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "7",
"name": "WF-06 Daily Report",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "30 16 * * 1-5"
}
]
}
},
"id": "schedule-1",
"name": "Cron 16:30 KST Weekdays",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
0,
0
]
},
{
"parameters": {
"method": "GET",
"url": "http://core-engine:8000/trading/status",
"options": {
"timeout": 30000
}
},
"id": "http-1",
"name": "Get Trading Status",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
220,
0
]
},
{
"parameters": {
"method": "GET",
"url": "http://core-engine:8000/portfolio/status",
"options": {
"timeout": 30000
}
},
"id": "http-2",
"name": "Get Portfolio Status",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
440,
0
]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{ $json.status }}",
"operation": "isNotEmpty"
}
]
}
},
"id": "if-1",
"name": "Check Status Valid",
"type": "n8n-nodes-base.if",
"typeVersion": 2,
"position": [
660,
0
]
},
{
"parameters": {
"method": "POST",
"url": "https://api.telegram.org/bot<YOUR_BOT_TOKEN>/sendMessage",
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "chat_id",
"value": "<YOUR_CHAT_ID>"
},
{
"name": "text",
"value": "=Daily Report\nTrading: {{ $('Get Trading Status').item.json.status }}\nPortfolio: {{ $('Get Portfolio Status').item.json }}"
}
]
},
"options": {
"timeout": 10000
}
},
"id": "http-3",
"name": "Send Telegram Daily Summary",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
880,
0
]
}
],
"connections": {
"Cron 16:30 KST Weekdays": {
"main": [
[
{
"node": "Get Trading Status",
"type": "main",
"index": 0
}
]
]
},
"Get Trading Status": {
"main": [
[
{
"node": "Get Portfolio Status",
"type": "main",
"index": 0
}
]
]
},
"Get Portfolio Status": {
"main": [
[
{
"node": "Check Status Valid",
"type": "main",
"index": 0
}
]
]
},
"Check Status Valid": {
"main": [
[
{
"node": "Send Telegram Daily Summary",
"type": "main",
"index": 0
}
],
[]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
WF-06 Daily Report. Uses httpRequest. Scheduled trigger; 5 nodes.
Source: https://github.com/digitect38/alphatrade/blob/e2d51083d6353811cfa69d58f6f62e7080d33a9b/n8n-workflows/WF-06-daily-report.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Birthday Automation - Production (Fixed). Uses stopAndError, httpRequest, emailSend, bannerbear. Scheduled trigger; 86 nodes.
This template runs two scheduled workflows to govern Microsoft Entra ID (Azure AD) guest accounts by detecting stale users via Microsoft Graph, staging deletions in SharePoint with a 72-hour window, n
Jira-Allure-Auto-Qa. Uses httpRequest, jira. Scheduled trigger; 68 nodes.
Spotify-Sync-Surrealdb-V1. Uses httpRequest, n8n-nodes-surrealdb, spotify. Scheduled trigger; 62 nodes.
As n8n instances scale, teams often lose track of sub-workflows—who uses them, where they are referenced, and whether they can be safely updated. This leads to inefficiencies like unnecessary copies o