OPEN-SOURCE SCRIPT
ที่อัปเดต:

Multi-Timeframe Ichimoku Table

182
This script is a Multi-Timeframe Ichimoku Table indicator for TradingView, written in Pine Script version 6. It provides a table displaying Ichimoku trend signals for different timeframes: 1-minute, 3-minute, 5-minute, and 15-minute. Here’s a breakdown of what the script does:

1. Indicator Setup
The script starts by defining a non-overlay indicator (i.e., it will be shown separately from the main price chart).

2. Ichimoku Calculation Function
The function f_ichimoku(_tf) computes the Tenkan-sen (Conversion Line) and Kijun-sen (Base Line) for a given timeframe.
It does this by taking:
The highest high and lowest low over the past 9 periods (Tenkan-sen).
The highest high and lowest low over the past 26 periods (Kijun-sen).
It then returns these values.

3. Getting Ichimoku Values for Multiple Timeframes
The function is called for four different timeframes:
1-minute ("1"), 3-minute ("3"), 5-minute ("5"), and 15-minute ("15").
The results are stored in variables:
t1_tenkan, t1_kijun for 1-minute
t3_tenkan, t3_kijun for 3-minute
t5_tenkan, t5_kijun for 5-minute
t15_tenkan, t15_kijun for 15-minute

4. Trend Color Determination
The function getColor(tenkan, kijun) assigns colors based on Ichimoku trend signals:
Green (color.green) if Tenkan-sen is above Kijun-sen → BUY Signal.
Red (color.red) if Tenkan-sen is below Kijun-sen → SELL Signal.

5. Creating the Table
A table is created in the top-right of the chart.
The table has 2 columns:
First column: Timeframe labels (1m, 3m, 5m, 15m).
Second column: Trend status (BUY or SELL) based on Tenkan-sen and Kijun-sen.
The color of each trend cell is dynamically updated based on getColor():
Green for BUY
Red for SELL

6. Displaying Data in the Table
The table headers are set: "Timeframe" and "Trend".
The trend status for each timeframe is added:
"1m" row → Displays BUY or SELL with color.
"3m" row → Displays BUY or SELL with color.
"5m" row → Displays BUY or SELL with color.
"15m" row → Displays BUY or SELL with color.

Final Output

This script provides an easy-to-read color-coded table showing Ichimoku trend signals across multiple timeframes. It helps traders quickly determine the momentum direction across different short-term periods.
เอกสารเผยแพร่
This TradingView Pine Script indicator is an enhanced Ichimoku Cloud strategy that displays trend signals across multiple timeframes in a table format. It helps traders quickly assess market trends and make informed trading decisions.

Key Features:
Ichimoku Cloud with Customizable Settings

Inputs for Conversion Line (Tenkan-sen), Base Line (Kijun-sen), Leading Span B, and Lagging Span.

Plots standard Ichimoku components (Conversion Line, Base Line, Leading Span A & B).
Cloud (Kumo) fill is colored green for bullish trends and red for bearish trends.
Multi-Timeframe Trend Analysis Table

Evaluates Ichimoku trend signals for 1-minute, 3-minute, 5-minute, and 15-minute timeframes.
Each timeframe's trend is displayed as BUY (Green) or SELL (Red).

The table is positioned at the top-right corner of the chart.
Dynamic Trend Color Coding

If Tenkan-sen (Conversion Line) is above Kijun-sen (Base Line) → BUY signal (Green).
If Tenkan-sen is below Kijun-sen → SELL signal (Red).

How It Works:

The script retrieves Ichimoku values for each timeframe (1m, 3m, 5m, 15m) using request.security.

It compares the Conversion Line (Tenkan-sen) and Base Line (Kijun-sen) for trend direction.
The table updates dynamically to show BUY or SELL signals for each timeframe.
The Ichimoku Cloud is plotted on the chart for visual confirmation of trend signals.

How to Use This Indicator:

If multiple timeframes show BUY (Green) → bullish momentum.
If multiple timeframes show SELL (Red) → bearish momentum.
When signals are mixed, it may indicate market indecision.

The Ichimoku Cloud on the chart can be used for additional confirmation.
This indicator provides a quick multi-timeframe analysis for traders using Ichimoku-based strategies!
เอกสารเผยแพร่
This script is a Multi-Timeframe Ichimoku Table Indicator for TradingView. It provides Ichimoku trend signals for four different timeframes (1m, 3m, 5m, and 15m) and displays them in a table in the top-right corner of the chart. Here’s a breakdown of how it works:

Features of the Indicator:
Ichimoku Cloud Calculation:

Uses standard Ichimoku settings with user-defined inputs for:

Conversion Line (Tenkan-sen)
Base Line (Kijun-sen)
Leading Span B
Lagging Span
Retrieves Ichimoku values from multiple timeframes (1m, 3m, 5m, 15m).

Trend Signal Logic:

If Base Line (Kijun-sen) is above the Conversion Line (Tenkan-sen) → BUY signal (Green)
If Base Line is below the Conversion Line → SELL signal (Red)
Table Display (Multi-Timeframe Trend Signal):

A table is displayed at the top-right corner of the chart.

The table contains two columns:

Timeframe (1m, 3m, 5m, 15m)
Trend Signal (BUY/SELL with respective colors)
Green background for BUY signals, Red background for SELL signals.

Ichimoku Cloud Visualization:

Plots the Conversion Line (Blue)
Plots the Base Line (Red)
Plots the Leading Span A & B to form the Ichimoku Cloud (Kumo)
The cloud is colored green for bullish momentum and red for bearish momentum.

How to Use It:

The table provides a quick glance at the trend across different timeframes.
If multiple timeframes show BUY, the market may be in an uptrend.
If multiple timeframes show SELL, the market may be in a downtrend.
The Ichimoku Cloud visualization can be used to confirm the trend.
เอกสารเผยแพร่
This TradingView indicator is a multi-timeframe Ichimoku Cloud trend table that helps traders analyze trends across different timeframes using the Conversion Line (Tenkan-sen) and Base Line (Kijun-sen).

Features:
Multi-Timeframe Analysis:

It checks Ichimoku values across 1-minute, 3-minute, 5-minute, 15-minute, 1-hour, 4-hour, and daily timeframes.

Trend Decision Logic:

If Base Line (Kijun-sen) is above the Conversion Line (Tenkan-sen) → BUY signal (Green background).
If Base Line is below the Conversion Line → SELL signal (Red background).
Table Display in the Top-Right Corner:

The table shows trend signals for each timeframe with a color-coded background.

Ichimoku Cloud Visualization:

Tenkan-sen (blue) and Kijun-sen (red) are plotted.
Senkou Span A (green) and Senkou Span B (orange) form the cloud.
The cloud is filled with green when bullish and red when bearish.
เอกสารเผยแพร่
This indicator is a Multi-Timeframe Ichimoku Table designed for TradingView. It provides trend signals based on the Ichimoku Cloud for multiple timeframes, from 1-minute to daily (1D).

Main Features:
Ichimoku Settings

User-defined inputs for:

Conversion Line Length (default: 9)
Base Line Length (default: 26)
Leading Span B Length (default: 52)
Lagging Span Length (default: 26)

Multi-Timeframe Ichimoku Calculation

Extracts Conversion Line (Tenkan-Sen), Base Line (Kijun-Sen), and Cloud Data (Senkou Span A & B) for the following timeframes:
1m, 3m, 5m, 15m, 1H, 4H, and Daily (1D)
Uses request.security() to retrieve these values from different timeframes.
Trend Signals in a Table (Top-Right of the Chart)

The table consists of three columns:

Timeframe (1m, 3m, etc.)
Trend (Lines):
BUY (Green) → When Base Line (Kijun-Sen) is above Conversion Line (Tenkan-Sen)
SELL (Red) → When Base Line is below Conversion Line

Trend (Cloud):
BUY (Green) → When Leading Span A (Senkou A) is above Leading Span B (Senkou B)
SELL (Red) → When Leading Span A is below Leading Span B

Ichimoku Cloud Visualization

Plots Conversion Line (Blue), Base Line (Red), Senkou Span A (Green), and Senkou Span B (Orange)

Fills the cloud:
Green Cloud → Bullish (Senkou A above Senkou B)
Red Cloud → Bearish (Senkou A below Senkou B)

How It Helps Traders:

✅ Provides a quick overview of trends across multiple timeframes
✅ Helps traders identify momentum shifts
✅ Allows traders to confirm buy/sell signals based on two different methods (Lines & Cloud)
เอกสารเผยแพร่
This indicator is a Multi-Timeframe Ichimoku Table designed for TradingView. It provides trend signals based on the Ichimoku Cloud for multiple timeframes, from 1-minute to daily (1D).

Main Features:
Ichimoku Settings

User-defined inputs for:
Conversion Line Length (default: 9)
Base Line Length (default: 26)
Leading Span B Length (default: 52)
Lagging Span Length (default: 26)

Multi-Timeframe Ichimoku Calculation

Extracts Conversion Line (Tenkan-Sen), Base Line (Kijun-Sen), and Cloud Data (Senkou Span A & B) for the following timeframes:
1m, 3m, 5m, 15m, 1H, 4H, and Daily (1D)
Uses request.security() to retrieve these values from different timeframes.
Trend Signals in a Table (Top-Right of the Chart)

The table consists of three columns:
Timeframe (1m, 3m, etc.)

Trend (Lines):
BUY (Green) → When Base Line (Kijun-Sen) is above Conversion Line (Tenkan-Sen)
SELL (Red) → When Base Line is below Conversion Line

Trend (Cloud):
BUY (Green) → When Leading Span A (Senkou A) is above Leading Span B (Senkou B)
SELL (Red) → When Leading Span A is below Leading Span B
Ichimoku Cloud Visualization

Plots Conversion Line (Blue), Base Line (Red), Senkou Span A (Green), and Senkou Span B (Orange)

Fills the cloud:
Green Cloud → Bullish (Senkou A above Senkou B)
Red Cloud → Bearish (Senkou A below Senkou B)

How It Helps Traders:

✅ Provides a quick overview of trends across multiple timeframes
✅ Helps traders identify momentum shifts
✅ Allows traders to confirm buy/sell signals based on two different methods (Lines & Cloud)
เอกสารเผยแพร่
Updated version.

How It Helps Traders:

✅ Provides a quick overview of trends across multiple timeframes
✅ Helps traders identify momentum shifts
✅ Allows traders to confirm buy/sell signals based on two different methods (Lines & Cloud)

คำจำกัดสิทธิ์ความรับผิดชอบ

ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมที่ ข้อกำหนดการใช้งาน