Block 1 - Schedule Trigger
- Type / Role
- n8n-nodes-base.scheduleTrigger - scheduleTrigger
- Config choices
- Version 1.2
This workflow is provided as-is. Please review and test before using in production.
AI Powered Stock Tracker with Yahoo Finance & Google Sheets ️ COMMUNITY ...
n8n-nodes-base.scheduletrigger, n8n-nodes-scrapegraphai.scrapegraphai, n8n-nodes-base.googlesheets, n8n-nodes-base.code, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by vinci-king-01.
Original n8n.io source⚠️ COMMUNITY TEMPLATE DISCLAIMER: This is a community-contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the ScrapeGraphAI community node installed in your n8n instance before using this template.
This automated workflow monitors stock prices by scraping real-time data from Yahoo Finance. It uses a scheduled trigger to run at specified intervals, extracts key stock metrics using AI-powered extraction, formats the data through a custom code node, and automatically saves the structured information to Google Sheets for tracking and analysis.
Create a Google Sheets document with the following column structure:
| Column A | Column B | Column C | Column D | Column E | Column F | Column G |
|---|---|---|---|---|---|---|
| symbol | current_price | change | change_percent | volume | market_cap | timestamp |
| AAPL | 225.50 | +2.15 | +0.96% | 45,234,567 | 3.45T | 2024-01-15 14:30:00 |
This automated workflow monitors stock prices by scraping real-time data from Yahoo Finance. It uses a scheduled trigger to run at specified intervals, extracts key stock metrics using AI-powered extraction, formats the data through a custom code node, and automatically saves the structured information to Google Sheets for tracking and analysis.
Setup Time: 5-10 minutes
// In the ScrapeGraphAI node, modify the URL to track different stocks:
const stockSymbols = ['AAPL', 'GOOGL', 'MSFT', 'TSLA'];
const baseUrl = 'https://finance.yahoo.com/quote/';
// In the Code node, extend the data structure:
const extendedData = {
...stockData,
pe_ratio: extractedData.pe_ratio,
dividend_yield: extractedData.dividend_yield,
day_range: extractedData.day_range
};
// Modify the Schedule Trigger for different frequencies:
// Daily at 9:30 AM (market open): "0 30 9 * * *"
// Every 15 minutes during market hours: "0 */15 9-16 * * 1-5"
// Weekly on Monday: "0 0 9 * * 1"
The workflow outputs structured JSON data with the following fields:
{
"symbol": "AAPL",
"current_price": "225.50",
"change": "+2.15",
"change_percent": "+0.96%",
"volume": "45,234,567",
"market_cap": "3.45T",
"timestamp": "2024-01-15T14:30:00Z"
}
Pro Tips:
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.
| Workflow | Track stock prices with ScrapeGraphAI, Yahoo Finance & Google Sheets |
|---|---|
| Complexity | intermediate |
| Nodes | 8 |
| Categories | Content Creation, Multimodal AI |
| Author | vinci-king-01 |
| Published | 31 Jul 2025 |
Use the JSON export at /data/workflows/6726/6726.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
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.
AI Powered Stock Tracker with Yahoo Finance & Google Sheets ️ COMMUNITY ...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
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 Content Creation, Multimodal AI use case.