ค้นหาในสคริปต์สำหรับ "supertrend"
SSL MACD - nhuthang83supertrend method, supertrend method, supertrend method, supertrend method, supertrend method,
SuperTrended Moving Averages Strategyself use
used in 1 second timeframe
please let me publish it aaa
CPR PIVOT, 2ST, 5MA, VWAPSUPERTREND
2 supertrend with diffrent patameters.
MOVING AVERAGE RIBBON
5 differenT EMA
VWAP
Simple vwap with bands nothing special
every parameters and looks can be change
AND CPR
Supertrend + RSI + EMA + MACD - Fixed Single SignalMomentum trading with signals to add alerts and connect to API for Algo trading
SuperTrend Zone Rejection [STRZ] CONCEPT -
This indicator identifies trend-continuation setups by combining the Super Trend with dynamic Average True Range (ATR) value zones. It highlights specific price action behaviour's—specifically wick rejections and momentum closes—that occur during pullbacks into the trend baseline.
HOW IT WORKS -
The script operates on three logic gates:
>> Trend Filter: Uses a standard Super Trend (Factor 3, Period 10 default) to define market direction.
>> Dynamic Zones: Projects a volatility-based zone (default 2.0x ATR) above or below the Super Trend line to define a valid pullback area.
>> Signal Detection: Identifies specific candle geometries occurring within these zones.
>> Rejection: Candles with significant wicks testing the zone support/resistance.
>> Momentum: Candles that open within the zone and close in the upper/lower quartile of their range.
FEATURES -
>> Dynamic Channel: Visualizes the active buy/sell zone using a continuous, non-repainting box.
>> Volatile Filtering: Filters out low-volatility candles (doji's/noise) based on minimum ATR size.
>> Visuals: Color-coded trend visualization with distinct signal markers for qualified entries.
SETTINGS -
>> Super Trend: Adjustable Factor and ATR Period.
>> Zone Multiplier: Controls the width of the pullback zone relative to ATR.
>> Visuals: Customizable colours for zones and signals to fit light/dark themes.
Supertrend Opposite Band Line Onlywhen super trend changes Trend , its important to wait for crossing the Price line of opposite Band so i have written this script . this will help you Traders for sure
Supertrend with TP, Entry & DCAThis script is super trend plus, horizontal lines for Take Profit, Entry Price and DCA.
Supertrend & MACD with 60 EMA Signalsthis is a great way to understand market without getting biased ...excellent for intraday entry
Supertrend & CCI Strategy ScalpThis strategy is based on 2 Super Trend Indicators along with CCI .
The longer factor length gives you the current trend and the deviation in the short factor length gives us the opportunity to enter in the trade .
CCI indicator is used to determine the overbought and oversold levels.
Setup :
Long : When atrLength1 > close and atrLength2 < close and CCI < -100 we look for long trades as the longer factor length will be bullish .
Short : When atrLength1 < close and atrLength2 > close and CCI > 100 we look for short trades as the longer factor length will be bearish .
Please tune the settings according to your use .
Trade what you see not what you feel .
Please consult with your financial advisor before you deploy any real money for trading .
SuperTrend VolatilityThis indicator is actually composition of 3 indicator to one common one
it based on super trend , OBV and volatility % range
obv act as our source for the super trend to make it more sensitive
you can control it as a regular super trend + the addition of volatility % range (volatility factor)
so 1 is volatility range , can be from 0.1 to 5 depend on your liking.
i set it here in this example of btc 4 hour chart to be 0.5 which is 1/2 of the volatility % range since it fitted better this particular asset . for stock i prefer 1 as my factor
this indicator as i normally do have alert and signal inside.
the aim of this indicator is to maximize trend on one hand and other to keep sensitivity high
one of the problem with regular super trend that as we keep the we increase the trend to be longer it lose sensitivity .
by this method that i show here i try to minimize that bad effect and make it both sensitive and more responsive. this is one of the reason i use a modified version of OBV as a source to it .
for each asset that you use try to find the best fit so this model can work properly
here apple with factor=1 as range
on daily it better half of volatility range
NIO
gold 4 hour
gold 1 hour
Supertrend V1.0 - Buy or Sell SignalTesting a concept to get a TP and SL based on the ATR at the time of the position entry.
SuperTrend BFI am republishing this indicator as something changed within TradingView's script engine so that the old script ceased to function ( a minor syntax error that used to be acceptable but no longer is).
Anyhow here's the fixed version which as you can see has done a great job of keeping us on the right side of the trend with once-hot stocks like Skyworks !
Fusion Signals Pro [Apicode]# Fusion Signals Pro
**Technical Documentation**
## 1. Overview
**Fusion Signals Pro** is a multi-indicator, multi-timeframe confirmation system developed in **Pine Script v6**.
Its primary goal is to **identify high-probability long and short entries** by requiring alignment across several momentum, trend, and oscillator indicators.
The indicator combines:
* Momentum (RPM, MACD)
* Oscillators (RSI, Stochastic, CCI, BBO)
* Trend-following logic (SuperTrend, EMA + T3 smoothing)
* A proprietary Heiken-Ashi–based trend module (**HACOLT**)
When all components align, the system generates **entry signals**, visual confirmations, and alerts.
---
## 2. Indicator Characteristics
| Property | Value |
| ------------------ | ----------------------------- |
| Script Version | Pine Script™ v6 |
| Overlay | Yes (candles, EMAs, signals) |
| Main Panel | Oscillator-style status panel |
| Repainting Control | Configurable per indicator |
| Market Types | Crypto, Stocks, ETFs |
| Timeframes | 15m, 30m, 1H, 2H and higher |
---
## 3. Architecture Summary
The indicator consists of **five major modules**:
1. **Multi-Timeframe Data Engine**
2. **Indicator Calculation Engine**
3. **Scoring & State Engine**
4. **Signal & Alert Engine**
5. **Trendline & HACOLT Engine**
---
## 4. Multi-Timeframe Data Engine
### `getSecurityData()`
This function safely retrieves higher- or alternate-timeframe data while controlling repainting behavior.
**Key features:**
* Supports real-time vs historical bar handling
* Optional repainting toggle per indicator
* Uses `request.security()` internally
```pinescript
getSecurityData(src, resolution, allowRepainting)
```
---
## 5. Indicator Components
### 5.1 RPM (Rate of Price Momentum)
**Purpose:**
Measures cumulative percentage price change over a defined period.
**Logic:**
* Calculates bar-to-bar % change
* Sums the change over `RPM Period`
**Signal Logic:**
* `> 0` → Bullish
* `< 0` → Bearish
---
### 5.2 BBO (Bull–Bear Oscillator)
**Custom oscillator combining:**
* Candle price structure
* RSI confirmation
* Super Smoother filter
**Output values:**
* `+100` → Bullish impulse
* `-100` → Bearish impulse
* `0` → Neutral
Smoothed using a **Super Smoother Moving Average**.
---
### 5.3 MACD
**Configurable elements:**
* Fast EMA
* Slow EMA
* Signal line
* Histogram or MACD line selection
**Signal Logic:**
* Positive value → Bullish
* Negative value → Bearish
Supports independent timeframe and repainting control.
---
### 5.4 RSI (Relative Strength Index)
**Standard RSI logic (14-period default)**
**Signal Threshold:**
* `> 50` → Bullish
* `< 50` → Bearish
---
### 5.5 Stochastic Oscillator
**Calculation:**
* %K → smoothed by SMA
* Uses configurable smoothing parameters
**Signal Threshold:**
* `> 50` → Bullish
* `< 50` → Bearish
---
### 5.6 CCI (Commodity Channel Index)
**Signal Logic:**
* `> 0` → Bullish
* `< 0` → Bearish
---
### 5.7 SuperTrend
**Parameters:**
* ATR Period
* Multiplier Factor
**Trend Logic:**
* Price above SuperTrend → Bullish
* Price below SuperTrend → Bearish
---
## 6. Visual Status Panel (Fusion Matrix)
Each indicator is plotted as a **horizontal square block**, color-coded:
* **Green** → Bullish
* **Red** → Bearish
### Indicator Order (Top to Bottom):
1. RPM
2. MACD
3. RSI
4. Stochastic
5. CCI
6. BBO
7. SuperTrend
8. HACOLT
Labels dynamically update on the last bar.
---
## 7. Scoring System
Each indicator contributes **1 point** when bullish.
| Indicator | Condition |
| ---------- | ----------- |
| RPM | `> 0` |
| MACD | `> 0` |
| RSI | `> 50` |
| Stochastic | `> 50` |
| CCI | `> 0` |
| BBO | `> 0` |
| SuperTrend | Price above |
**Score Range:** `0 → 7`
### Color Mapping
* **7** → Strong Green (Full alignment)
* **5–6** → Light Green
* **4** → Neutral (Gray)
* **1–3** → Light Red
* **0** → Strong Red
This score controls:
* Candle color
* Bar color
* Visual confidence level
---
## 8. Entry Logic
### Long Entry
All bullish conditions must be met:
```text
RPM > 0
MACD > 0
RSI > 50
Stochastic > 50
CCI > 0
BBO > 0
SuperTrend bullish
```
### Short Entry
All bearish conditions must be met (inverse logic).
---
## 9. Position State Machine
The indicator tracks trade direction using an internal state:
| State | Meaning |
| ----- | ---------- |
| `1` | Long bias |
| `-1` | Short bias |
| `0` | Neutral |
**Signals trigger only on state transitions**, reducing false signals and repeated entries.
---
## 10. Alerts
### Available Alerts
* Long Entry
* Short Entry
* Generic Entry (Long or Short)
* HACOLT Trend Change
Alerts include:
* Symbol
* Price
* Direction
---
## 11. Trendline Engine (EMA + T3)
### Features:
* Multi-timeframe EMA calculation
* T3 smoothing for noise reduction
* Auto / Multiplier / Manual timeframe selection
### Logic:
* EMA1 (fast) vs EMA2 (slow)
* Filled area changes color on crossover
* Acts as a **trend bias filter**
---
## 12. HACOLT Module (Advanced Trend Filter)
**HACOLT** is a proprietary trend detection system based on:
* Heiken-Ashi logic
* TEMA smoothing
* Candle structure analysis
* State persistence logic
### States:
* `1` → Bullish trend
* `-1` → Bearish trend
### Uses:
* Additional confirmation
* Early trend detection
* Visual trend persistence
---
## 13. Repainting Control
Each major component includes:
* Independent timeframe
* Independent repainting toggle
This allows:
* Backtesting accuracy
* Real-time responsiveness
* Hybrid confirmation setups
---
## 14. Intended Use
**Fusion Signals Pro is designed for:**
* Trend-following strategies
* Confirmation-based entries
* Multi-timeframe analysis
* Crypto and equity markets
⚠️ It is **not** intended as a standalone trading system without risk management.
---
## 15. Conclusion
Fusion Signals Pro is a **high-confluence trading indicator** that merges momentum, oscillators, and trend-following logic into a unified decision framework.
Its strength lies in **signal alignment**, **state tracking**, and **visual clarity**, making it suitable for both discretionary and systematic traders.






















