TMM - 4EMAThe 4 EMA Indicator (Exponential Moving Average) uses four exponential moving averages with different periods to identify market trends across multiple timeframes. It helps traders recognize short-term to long-term momentum and make informed entry or exit decisions. When the EMAs are aligned from shortest to longest and sloping upward, it indicates a bullish trend. Conversely, when they are ordered from longest to shortest and sloping downward, it signals a bearish trend. The 4 EMA is especially useful in trend-following strategies for spotting strong directional movements.
Indicatori di Bill Williams
COT INDEX
// Users & Producers: Commercial Positions
// Large Specs (Hedge Fonds): Non-commercial Positions
// Retail: Non-reportable Positions
//@version=5
int weeks = input.int(26, "Number of weeks", minval=1)
int upperExtreme = input.int(80, "Upper Threshold in %", minval=50)
int lowerExtreme = input.int(20, "Lower Threshold in %", minval=1)
bool hideCurrentWeek = input(true, "Hide the current week until market close")
bool markExtremes = input(false, "Mark long and short extremes")
bool showSmallSpecs = input(true, "Show small speculators index")
bool showProducers = input(true, "Show producers index")
bool showLargeSpecs = input(true, "Show large speculators index")
indicator("COT INDEX", shorttitle="COT INDEX", format=format.percent, precision=0)
import TradingView/LibraryCOT/2 as cot
// Function to fix some symbols.
var string Root_Symbol = syminfo.root
var string CFTC_Code_fixed = cot.convertRootToCOTCode("Auto")
if Root_Symbol == "HG"
CFTC_Code_fixed := "085692"
else if Root_Symbol == "LBR"
CFTC_Code_fixed := "058644"
// Function to request COT data for Futures only.
dataRequest(metricName, isLong) =>
tickerId = cot.COTTickerid('Legacy', CFTC_Code_fixed, false, metricName, isLong ? "Long" : "Short", "All")
value = request.security(tickerId, "1D", close, ignore_invalid_symbol = true)
if barstate.islastconfirmedhistory and na(value)
runtime.error("Could not find relevant COT data based on the current symbol.")
value
// Function to calculate net long positions.
netLongCommercialPositions() =>
commercialLong = dataRequest("Commercial Positions", true)
commercialShort = dataRequest("Commercial Positions", false)
commercialLong - commercialShort
netLongLargePositions() =>
largeSpecsLong = dataRequest("Noncommercial Positions", true)
largeSpecsShort = dataRequest("Noncommercial Positions", false)
largeSpecsLong - largeSpecsShort
netLongSmallPositions() =>
smallSpecsLong = dataRequest("Nonreportable Positions", true)
smallSpecsShort = dataRequest("Nonreportable Positions", false)
smallSpecsLong - smallSpecsShort
calcIndex(netPos) =>
minNetPos = ta.lowest(netPos, weeks)
maxNetPos = ta.highest(netPos, weeks)
if maxNetPos != minNetPos
100 * (netPos - minNetPos) / (maxNetPos - minNetPos)
else
na
// Calculate the Commercials Position Index.
commercialsIndex = calcIndex(netLongCommercialPositions())
largeSpecsIndex = calcIndex(netLongLargePositions())
smallSpecsIndex = calcIndex(netLongSmallPositions())
// Conditional logic based on user input
plotValueCommercials = hideCurrentWeek ? (timenow >= time_close ? commercialsIndex : na) : (showProducers ? commercialsIndex : na)
plotValueLarge = hideCurrentWeek ? (timenow >= time_close ? largeSpecsIndex : na) : (showLargeSpecs ? largeSpecsIndex : na)
plotValueSmall = hideCurrentWeek ? (timenow >= time_close ? smallSpecsIndex : na) : (showSmallSpecs ? smallSpecsIndex : na)
// Plot the index and horizontal lines
plot(plotValueCommercials, "Commercials", color=color.blue, style=plot.style_line, linewidth=2)
plot(plotValueLarge, "Large Speculators", color=color.red, style=plot.style_line, linewidth=1)
plot(plotValueSmall, "Small Speculators", color=color.green, style=plot.style_line, linewidth=1)
hline(upperExtreme, "Upper Threshold", color=color.green, linestyle=hline.style_solid, linewidth=1)
hline(lowerExtreme, "Lower Threshold", color=color.red, linestyle=hline.style_solid, linewidth=1)
/// Marking extremes with background color
bgcolor(markExtremes and (commercialsIndex >= upperExtreme or largeSpecsIndex >= upperExtreme or smallSpecsIndex >= upperExtreme) ? color.new(color.gray, 90) : na, title="Upper Threshold")
bgcolor(markExtremes and (commercialsIndex <= lowerExtreme or largeSpecsIndex <= lowerExtreme or smallSpecsIndex <= lowerExtreme) ? color.new(color.gray, 90) : na, title="Lower Threshold")
Foxeurpa4The FOXEuropa indicator provides accurate signals, clearly defining entry and exit zones, with well-calculated targets… But remember: risk management is the foundation.”
Foxeurpa3The foxEurope indicator shows you liquidity zones, fair value gaps, and order blocks.”
The foxEurope indicator shows you liquidity zones, fair value gaps, and order blocks.”
Josh SMC Key Features of Josh SMC
✅ Automatically detects Order Blocks (OB) — both Bullish and Bearish
✅ Accurately identifies Fair Value Gaps (FVG) and tracks whether they are “filled” or not
✅ Detects Change of Character (CHOCH) to signal potential trend reversals
✅ Analyzes price structure in real-time based on Smart Money Concepts
✅ Beginner-friendly, yet powerful for advanced traders
✅ Customizable zone colors and number of OB/FVG displays
✅ Works on all timeframes from 1-minute and up
📌 What You’ll Gain from Using Josh SMC
🔺 Spot potential reversal zones before the crowd
🔻 Avoid chasing fake trends and getting trapped
🎯 Plan your entries and exits with OB and FVG precision
🚫 Eliminate guesswork from your analysis
🚀 Trade with confidence and structure — like smart money does
🔍 Who Is This For?
Traders who follow Smart Money Concepts (SMC), ICT, or Price Action
Anyone seeking high-quality entry/exit zones
Traders who want to understand how institutions move the market
Josh SMC Key Features of Josh SMC
✅ Automatically detects Order Blocks (OB) — both Bullish and Bearish
✅ Accurately identifies Fair Value Gaps (FVG) and tracks whether they are “filled” or not
✅ Detects Change of Character (CHOCH) to signal potential trend reversals
✅ Analyzes price structure in real-time based on Smart Money Concepts
✅ Beginner-friendly, yet powerful for advanced traders
✅ Customizable zone colors and number of OB/FVG displays
✅ Works on all timeframes from 1-minute and up
📌 What You’ll Gain from Using Josh SMC
🔺 Spot potential reversal zones before the crowd
🔻 Avoid chasing fake trends and getting trapped
🎯 Plan your entries and exits with OB and FVG precision
🚫 Eliminate guesswork from your analysis
🚀 Trade with confidence and structure — like smart money does
🔍 Who Is This For?
Traders who follow Smart Money Concepts (SMC), ICT, or Price Action
Anyone seeking high-quality entry/exit zones
Traders who want to understand how institutions move the market
Josh SMC – Smart Money Concepts Indicator
🔍 เข้าใจเจตนารมณ์ของรายใหญ่ มองเห็นตลาดอย่างมืออาชีพ
🔧 จุดเด่นของอินดี้ Josh SMC
✅ ตรวจจับ Order Block (OB) ทั้งฝั่ง Bullish และ Bearish โดยอัตโนมัติ
✅ แสดง Fair Value Gap (FVG) อย่างแม่นยำ พร้อมระบบตรวจจับว่า FVG ถูก “เติมเต็ม” แล้วหรือยัง
✅ ตรวจจับ Change of Character (CHOCH) เพื่อหาสัญญาณกลับตัวในเทรนด์
✅ ใช้การวิเคราะห์โครงสร้างราคาตามหลัก Smart Money Concept แบบ Real-Time
✅ ใช้งานง่าย เหมาะทั้งเทรดเดอร์มือใหม่และมืออาชีพ
✅ ปรับแต่งสีและจำนวนโซนที่ต้องการแสดงได้อย่างยืดหยุ่น
✅ รองรับ Timeframe ตั้งแต่ 1 นาทีขึ้นไป
📌 สิ่งที่คุณจะได้เมื่อใช้ Josh SMC
🔺 มองเห็นจุดกลับตัวของราคาได้ก่อนใคร
🔻 หลีกเลี่ยงการติดดอยจากเทรนด์หลอก
🎯 วางแผนการเข้าออกออเดอร์อย่างแม่นยำตาม OB และ FVG
🚫 ลดความผิดพลาดจากการวิเคราะห์แบบเดาสุ่ม
🚀 เทรดด้วยความมั่นใจและมีระบบ เหมือนรายใหญ่ในตลาด
🔍 เหมาะสำหรับใคร?
เทรดเดอร์สาย Smart Money Concepts (SMC), ICT, Price Action
เทรดเดอร์ที่ต้องการกรอง "จุดเข้า-ออก" คุณภาพสูง
ผู้ที่ต้องการระบบช่วยมองภาพ "พฤติกรรมของรายใหญ่"
Double Fractal Entry📘 Double Fractal Entry – Original Structure-Based Entry System
Double Fractal Entry is a proprietary indicator that uses dynamic fractal structure to generate actionable buy/sell signals, with automatic Stop-Loss and Take-Profit placement. Unlike classic fractal tools or ZigZag-based visuals, this script constructs real-time structural channels from price extremes and offers precise entry points based on breakout or rejection behavior.
It is designed for traders who want a clear, structured approach to trading price action — without repainting, lagging indicators, or built-in oscillators.
🧠 Core Logic
This script combines three custom-built modules:
1. Fractal Detection and Channel Construction
- Fractals are detected using a configurable number of left/right bars (sensitivity).
- Confirmed upper/lower fractals are connected into two continuous channels.
- These channels represent real-time structure zones that evolve with price.
2. Entry Signal Logic
You can choose between two signal types:
- Breakout Mode – Triggers when price breaks above the upper fractal structure (for buys) or below the lower one (for sells).
- Rebound Mode – Triggers when price approaches a fractal channel and then rejects it (forms a reversal setup).
Each signal includes:
- Entry arrow on the chart
- Horizontal entry line
- Stop-Loss and Take-Profit lines
3. SL/TP Calculation
Unlike tools that use ATR or fixed values, SL and TP are dynamically set using the fractal range — the distance between the most recent upper and lower fractals. This makes the risk model adaptive to market volatility and structure.
📊 Visuals on the Chart
- 🔺 Green/Red triangle markers = confirmed fractals
- 📈 Lime/Red channel lines = evolving upper/lower structure
- 🔵 Blue arrow = signal direction (buy/sell)
- 📉 SL/TP lines = dynamically drawn based on fractal spacing
- 🔁 Signal history = optional, toggleable for backtesting
⚙️ Settings and Customization
- Fractal sensitivity (bars left/right)
- Entry mode: Breakout or Rebound
- SL and TP multiplier (based on fractal range)
- Visibility settings (signal history, lines, colors, etc.)
💡 What Makes It Unique
This is not just a variation of standard fractals or a ZigZag wrapper.
Double Fractal Entry was built entirely from scratch and includes:
- ✅ A dual-channel system that shows the live market structure
- ✅ Entry signals based on price behavior around key zones
- ✅ Volatility-adaptive SL/TP levels for realistic trade management
- ✅ Clean, non-repainting logic for both manual and automated use
The goal is to simplify structure trading and provide precise, repeatable entries in any market condition.
🧪 Use Cases
- Breakout mode – Ideal for trend continuation and momentum entries
- Rebound mode – Great for reversals, pullbacks, and range-bound markets
- Can be used standalone or combined with volume/trend filters
⚠️ Disclaimer
This tool is intended for technical analysis and educational use. It does not predict future market direction and should be used with proper risk management and strategy confirmation.
First candle of ≥4 same‑colour candlesClassifies each candle as bullish or bearish. A candle is considered bullish when the closing price is above the opening price, and bearish when the closing price is below the opening price
investopedia.com
; traditional charts depict bullish candles in green or white and bearish candles in red or black
investopedia.com
.
Counts consecutive candles of the same colour. Whenever a green candle appears, it increments a “bull run” counter; the counter resets to zero on a red candle. Likewise, it maintains a “bear run” counter that increments on red candles and resets on green candles.
Detects long runs of momentum. If a run of green candles reaches four or more bars, the indicator marks the very first candle of that sequence with a small green triangle below the bar. Similarly, if a run of red candles reaches four or more bars, it marks the first candle of that bearish run with a red triangle above the bar. Only the initial bar of each qualifying run is highlighted, even if the run later extends to five, six, or more candles.
Smart Money Concepts Altcoin Pioneers Group TRADING ™This indicator is a comprehensive trading tool designed for altcoin and crypto traders, combining Supertrend, trend analysis, risk management, and Smart Money Concepts (SMC) to identify high-probability trading setups. It provides clear buy/sell signals, trend visualization, and key price action levels to enhance decision-making across various market conditions.Key FeaturesSupertrend Module:Generates buy () and sell () signals based on Supertrend crossovers with customizable sensitivity (default: 1).
Uses ATR-based bands to adapt to market volatility, helping traders identify trend direction and reversals.
Enhanced with SMA confirmation (8 and 9 periods) for stronger signal reliability.
Trend Cloud & Visualization:Displays a "Cirrus Cloud" using dual ALMA filters (configurable windows and sigma) to highlight trend direction.
Includes a Hull Moving Average (HMA) cloud (600-period) for long-term trend context.
Bar coloring based on Supertrend and ADX (threshold: 15) to indicate trending or sideways markets.
Risk Management:Plots dynamic Take Profit (TP) and Stop Loss (SL) levels based on ATR (default: 3% risk, 14-period ATR).
Customizable TP/SL lines (solid, dashed, or dotted) with adjustable distance and decimal precision.
Supports up to three TP levels for flexible trade exits.
Smart Money Concepts (SMC):Identifies swing and internal market structures (BOS, CHoCH) with customizable display options (Historical or Present mode).
Detects Order Blocks (bullish/bearish, internal/swing) with ATR or cumulative mean range filtering.
Highlights Fair Value Gaps (FVGs), Equal Highs/Lows (EQH/EQL), and Premium/Discount Zones for institutional-level analysis.
Multi-timeframe (MTF) support for previous day/week/month highs and lows.
Additional Features:Trend Tracer lines for short-term price action analysis.
Volume-weighted EMAs (5, 9, 13, 34, 50 periods) for momentum confirmation.
Alerts for buy/sell signals, structure breaks, FVGs, and EQH/EQL formations.
How to UseSetup: Add the indicator to your chart and adjust settings via the Inputs tab.
Signals: Look for (buy) and (sell) labels for trade entries. Confirm with SMA crossovers and trend cloud direction.
Risk Management: Enable TP/SL levels to visualize risk-reward ratios. Adjust ATR Risk % and decimals for precision.
SMC Analysis: Use swing/internal structure and Order Blocks to identify institutional levels. Enable FVGs and EQH/EQL for additional confluence.
Trend Confirmation: Use bar colors (green for bullish, red for bearish, purple for sideways) and ADX to gauge market conditions.
SettingsSupertrend Sensitivity: Adjust nsensitivity (default: 1) for signal frequency.
Cirrus Cloud: Toggle on/off and tweak ALMA parameters (windows: 100/310, sigma: 6/32) for trend clarity.
Risk Management: Customize ATR Length (14), Risk % (3), and TP/SL display options.
SMC Options: Choose between Historical or Present mode, enable/disable FVGs, Order Blocks, and MTF levels.
Visuals: Modify line styles, label sizes, and colors for better chart readability.
3 EMA trong 1 NTT CAPITALThe 3 EMA in 1 NTT CAPITAL indicator provides an overview of the market trend with three EMAs of different periods, helping to identify entry and exit points more accurately, thus supporting traders in making quick and effective decisions.
London Breakout + FVG Strategy [GBPJPY] - with SL/TPMarks the London open high and low on 15 min time frame, ads fvg on 5 min for orders
Opening Range Box with Breakout LabelsOverview
This strategy automates the classic Opening Range breakout trading technique by identifying the price range during a specified initial time window (the "Opening Range") each trading day, and then triggers trades when the price breaks out above or below this range. It draws a visual box around the opening range for clarity and provides breakout signals with configurable take profit and stop loss levels expressed in pips.
Key Features
Configurable Opening Range Time Window:
Define the start and end time of the opening range session using hour and minute inputs (24-hour format). For example, you can set it to capture the first 15 minutes after market open.
Extended Box Display:
Optionally extend the opening range box display by a configurable number of hours beyond the initial range period for ongoing visual reference.
Opening Range Box Visualization:
A semi-transparent colored box is drawn on the chart representing the high and low price of the opening range period, updating dynamically as the session progresses.
Breakout Detection & Entry Signals:
The strategy detects breakouts once the opening range session ends (including the extended period). It places:
A long entry when the price closes above the opening range high.
A short entry when the price closes below the opening range low.
Take Profit and Stop Loss in Pips:
You can define your desired take profit and stop loss levels in pips, allowing consistent risk management tailored to the instrument's pip value.
Visual Breakout Labels:
Up and down arrow labels appear on the chart at breakout points to clearly mark trade signals.
Max Breakout Labels Limit:
Limits the number of breakout labels displayed on the chart to avoid clutter.
Losing and then SomeThis indicator will guide you to recognize if the price is overheating... Do not use this indicator if you have not mastered the art of money management... the key is to be precise and be patient.. The patient will be rewarded.
Fraktály a Trendovkyal shlash dlka sklhsda hasd klnasdnlkcalknacs 654 as64asd 65ads 156as 13ads 32asd 165as
RSI-Two.4This looks like a detailed breakdown of a custom trading indicator based on the RSI (Relative Strength Index). It integrates various sub-indicators and visual analysis tools to precisely identify market strength and trend reversal signals.
Here is the English version of the provided text.
Overview
This indicator is designed to precisely identify market strength and trend reversal signals by integrating various sub-indicators and visual analysis tools centered around the RSI (Relative Strength Index).
On the chart, you can grasp the RSI trend, overbought/oversold zones, divergences, and trend reversal signals all at once, enabling more reliable trading decisions.
Detailed Feature Analysis
1. Basic RSI Calculation and Visualization
RSI Calculation:
Instead of the traditional RSI formula, a smoothed moving average method using ta.rma() is employed to reduce noise and provide a more intuitive RSI value.
Line Color and Display:
The RSI line is displayed in blue (#0B54FE) when the value is below 30, pink (#FC0FC0) when it's above 70, and semi-transparent white otherwise. This provides a clear, intuitive distinction of overbought and oversold zones.
Adjustable Line Thickness:
You can adjust the line thickness for customized chart readability.
2. RSI Candle Chart
Purpose:
The visual flow of the RSI is displayed in a candle chart format, allowing you to grasp the RSI's upward/downward trend at a glance.
Application:
Rising candles are shown in transparent green, while falling candles are shown in transparent red, allowing for an immediate assessment of market strength.
Utility:
This is far more intuitive than a regular RSI line and, when viewed alongside the main candle chart, helps you quickly recognize market turning points.
3. Ichimoku Cloud (RSI-based)
Cloud Concept:
This feature borrows the principles of the traditional Ichimoku Cloud to form an RSI-based cloud.
Leading Spans A and B:
The leading spans are calculated using the RSI's conversion and base lines, visualizing market support and resistance zones.
Colors:
Upward clouds are green, and downward clouds are brown.
How to Use:
Quickly identify bullish/bearish zones based on the cloud's color and position. A breakthrough of the cloud can be used as a strong trend reversal signal.
4. v.h.m. Moving Average Trend Length (Self-Calculated)
Color Change:
The color changes to green when the RSI rises and to pink when it falls, providing an intuitive grasp of the trend's direction.
Expert Tip:
A strong buy signal can be generated when the HMA (Hull Moving Average) turns upward, and a sell signal when it turns downward.
5. Overbought/Oversold Vertical Lines
Levels:
Based on the 70 (overbought) and 30 (oversold) thresholds.
Signals:
When the RSI crosses above 70 or below 30, colored vertical lines appear in the chart's background, quickly signaling an overbought or oversold state.
Expert Application:
Use overbought zones to identify potential selling opportunities and oversold zones to spot potential buying opportunities.
6. Divergence Detection
Function:
The indicator automatically detects bullish and bearish divergences, as well as hidden divergences, by analyzing the difference between price peaks and troughs and the RSI.
Signals:
Labels with "D," circles, or arrows are displayed on the chart to predict a trend reversal or weakening of momentum.
Fibonacci Retracement Altcoin Pioneers ™This powerful indicator combines Fibonacci Retracement levels with a suite of technical indicators to assist traders in analyzing price movements and making informed decisions. Designed for flexibility and ease of use, it offers a customizable interface for displaying data on charts and in tables, making it suitable for both novice and experienced traders.
Key Features:
Fibonacci Retracement: Automatically draws Fibonacci levels (0.382, 0.5, 0.618, 0.786) with customizable lines and labels based on recent price highs and lows. Includes alerts for price touching key levels (Top and Bottom) with adjustable tolerance.
Technical Indicators: Includes RSI, ATR, Momentum, ADX, MACD, Parabolic SAR, Bollinger Bands, and Ichimoku Cloud, all customizable for periods and colors.
Moving Averages: Displays EMA and SMA (50, 100, 200) with options to enable or disable them as needed.
Informative Tables: Provides customizable tables for desktop and mobile, showing open price, close price, percentage change, RSI, ATR, and volume in dollars.
Dual Language Support: Labels and descriptions can be displayed in English or Turkish.
Watermark: Displays symbol information and date in a customizable position for an organized view.
Customization Settings:Fibonacci: Enable/disable levels, choose distance and color.
Table: Select position (Top Right, Bottom Left, etc.) and size (Small, Medium, Large).
Language: Choose between English for labels.
Indicators: Customize periods and colors for each technical indicator.
Buy/Sell Signal - Advanced v2The Buy/Sell Signal – Advanced v2 indicator is a powerful tool designed for traders who seek more reliable and filtered entries. This indicator combines classic technical analysis with modern enhancements to reduce noise and false signals. It generates Buy signals when a bullish candle closes above the 14-period Simple Moving Average (SMA), the RSI is below the oversold threshold (default: 30), and trading volume is higher than the 20-period average—indicating strong momentum and potential reversal from a discounted price zone. Conversely, a Sell signal appears when a bearish candle closes below the SMA, RSI is above the overbought level (default: 70), and volume exceeds its average—signaling potential weakness after a price rally.
In addition to entry signals, the indicator automatically plots dynamic support and resistance levels using pivot highs and lows. These levels help traders identify key zones for confirmation, breakout, or rejection. The SMA provides trend direction context, while the volume and RSI filters act as safeguards to avoid trading in low-quality conditions.
Ideal for scalpers and intraday traders on 5-minute to 1-hour timeframes, this indicator helps capture trend continuations and early reversals with confidence. For best results, use the signals in conjunction with multi-timeframe analysis and price action confirmation. This tool is especially effective on assets like XAUUSD, forex pairs, and indices.
THẦN TIÊN-HẠ PHÀMIndicator released by @NDucnhan79
Must use it correctly to make a profit, guys
Contact NDucnhan79 for further assistance
SCTI-RSKSCTI-RSK 是一个多功能技术指标合集,整合了多种常用技术指标于一个图表中,方便交易者综合分析市场状况。该指标包含以下五个主要技术指标模块,每个模块都可以单独显示或隐藏:
Stoch RSI - 随机相对强弱指数
KDJ - 随机指标
RSI - 相对强弱指数
CCI - 商品通道指数
Williams %R - 威廉指标
主要特点
模块化设计:每个指标都可以单独开启或关闭显示
交叉信号可视化:Stoch RSI和KDJ的金叉/死叉信号有彩色填充标识
多时间框架分析:支持不同长度的参数设置
直观界面:清晰的参数分组和颜色区分
适用场景
趋势判断
超买超卖区域识别
交易信号确认
多指标共振分析
English Description
SCTI-RSK is a comprehensive technical indicator that combines multiple popular indicators into a single chart for traders to analyze market conditions holistically. The indicator includes the following five main technical indicator modules, each can be toggled on/off individually:
Stoch RSI - Stochastic Relative Strength Index
KDJ - Stochastic Oscillator
RSI - Relative Strength Index
CCI - Commodity Channel Index
Williams %R - Williams Percent Range
Key Features
Modular Design: Each indicator can be shown or hidden independently
Visual Crossover Signals: Golden/Death crosses are highlighted with color fills for Stoch RSI and KDJ
Multi-Timeframe Analysis: Supports different length parameters
Intuitive Interface: Clear parameter grouping and color differentiation
Use Cases
Trend identification
Overbought/Oversold zone recognition
Trade signal confirmation
Multi-indicator confluence analysis
参数说明 (Parameter Explanation)
指标参数分为6个主要组别:
基础指标设置 - 控制各指标的显示/隐藏
Stoch RSI 设置 - 包括K值、D值、RSI长度等参数
KDJ 设置 - 包括周期、信号线等参数
RSI 设置 - 包括RSI长度、中期长度等参数
CCI 设置 - 包括CCI长度、中期长度等参数
Williams %R 设置 - 包括长度参数
使用建议 (Usage Suggestions)
初次使用时,可以先开启所有指标观察它们的相互关系
根据个人交易风格调整各指标的长度参数
关注多指标同时发出信号时的交易机会
结合价格行为和其他分析工具确认信号
更新日志 (Changelog)
v1.0 初始版本,整合五大技术指标
Williams Alligator with Background ColoringThe Benefits of the Williams Alligator – Without the “Spaghetti” on Your Chart
If you're one of those traders who prefer a clean, well-structured chart but don't want to miss out on the advantages of the Williams Alligator, this script is the perfect solution.
It includes all the features of the original TradingView script plus a background color feature based on your custom parameters:
Green when all candles are above the Alligator lines
Red when all candles are below all lines
Gray for everything in between
Feel free to customize the colors and transparency to your liking.
Happy Trading!