INVITE-ONLY SCRIPT

ETH SuperTrend Hull Strategy - 15min Futures(重制版)

118
🟠 ETH SuperTrend Hull Strategy - 15min Futures
Strategy Overview
The "ETH SuperTrend Hull Strategy" is a sophisticated 15-minute trading system specifically designed for Bitcoin perpetual contracts. This advanced algorithm integrates SuperTrend indicators with Hull moving averages to deliver high-precision trend following through a triple-confirmation mechanism, featuring intelligent position management and multi-level take-profit systems.

Core Value Proposition
Triple Trend Confirmation: SuperTrend + Hull MA + ATR volatility filtering

Adaptive Take-Profit System: 6-level dynamic profit targets adjusted to market conditions

Smart Position Management: Three martingale modes with automatic sizing

Real-time Webhook Integration: Direct exchange connectivity for automated execution

🟠 Technical Framework
Multi-Layer Trend Detection
Layer 1 - SuperTrend Filter

pinescript
[supertrend, direction] = ta.supertrend(supertrend_factor, supertrend_atr_period)
is_supertrend_long = direction < 0 // Bullish trend line
is_supertrend_short = direction >= 0 // Bearish trend line
Layer 2 - Hull MA Confirmation

pinescript
HMA = HMA(close, 73) // Hull Moving Average
hull_is_green = HULL > HULL[2] // Uptrend confirmation
hull_is_red = HULL <= HULL[2] // Downtrend confirmation
Layer 3 - ATR Breakout Signals

pinescript
xATR = ta.atr(5)
nLoss = key_value * xATR // Dynamic stop distance
Entry Conditions
Long Entry:

Price breaks above ATR trailing stop

Hull MA shows green uptrend

SuperTrend indicates bullish momentum

Price positioned above Hull MA

Short Entry:

Price breaks below ATR trailing stop

Hull MA shows red downtrend

SuperTrend indicates bearish momentum

Price positioned below Hull MA

🟠 Risk Management System
Position Sizing
text
Base Position = Initial Capital × Risk % / Entry Price × Leverage
Actual Position = Base Position × Martingale Multiplier (1.0-5.0x)
Martingale Modes
4x Mode: Conservative approach, maximum 4x position scaling

5x Mode: Balanced risk management, maximum 5x scaling

5x Big Mode: Aggressive growth with faster position increases

Dynamic Take-Profit System
6-Level Profit Targets:

TP1: 2.2×ATR (Close 30%)

TP2: 4.5×ATR (Close 25%)

TP3: 7.5×ATR (Close 20%)

TP4: 10.5×ATR (Close 10%)

TP5: 15.5×ATR (Close 7%)

TP6: 20.5×ATR (Close 3%)

ATR Adaptive Adjustment:

Short-term ATR > Long-term ATR: TP distance +0.5

Short-term ATR < Long-term ATR: TP distance -0.5

🟠 Configuration Parameters
Core Settings
pinescript
// Trend Sensitivity
key_value = 2.0 // ATR multiplier (lower = more sensitive)
supertrend_factor = 3.0 // SuperTrend factor

// Risk Management
risk_percent = 19.9 // Per trade risk %
leverage = 1.0 // Leverage multiplier
Hull MA Configuration
pinescript
length = 73 // Hull period (55-200)
modeSwitch = "Hma" // Hull variant (Hma/Thma/Ehma)
🟠 Quick Start Guide
Initial Setup
Apply to BTCUSDT perpetual 15-minute chart

Configure Webhook Signal ID and User ID

Adjust position parameters according to risk preference

Signal Monitoring
Long Signals: Green arrows with Hull MA turning green

Short Signals: Red arrows with Hull MA turning red

Trend Direction: SuperTrend line color changes

Execution Workflow
Wait for triple-signal confluence

Confirm all entry conditions met

System automatically calculates position size and TP levels

Webhook sends trade instructions to connected platform

Advanced Features
Heikin-Ashi Mode: Smooth price data using Heikin-Ashi candles

Fixed Position Mode: Disable martingale, use fixed sizing

Multi-Timeframe: Higher timeframe confirmation integration
🟠 ETH SuperTrend Hull Strategy - 15min Futures
策略概述
"ETH超级趋势Hull策略"是一款专为比特币永续合约设计的15分钟短线交易系统。该策略融合超级趋势指标与Hull均线,通过三重过滤机制实现高精度趋势跟踪,具备智能仓位管理和多级止盈体系。

核心价值
三重趋势确认:Supertrend + Hull均线 + ATR波动过滤

自适应止盈系统:6级动态止盈,根据市场波动调整目标

智能仓位管理:支持三种倍投模式,自动调整仓位规模

实时Webhook通知:直连交易平台,实现自动化执行

🟠 策略原理
趋势识别系统
第一层 - 超级趋势过滤

pinescript
[supertrend, direction] = ta.supertrend(supertrend_factor, supertrend_atr_period)
is_supertrend_long = direction < 0 // 绿色趋势线
is_supertrend_short = direction >= 0 // 红色趋势线
第二层 - Hull均线确认

pinescript
HMA = HMA(close, 73) // Hull移动平均线
hull_is_green = HULL > HULL[2] // 上升趋势
hull_is_red = HULL <= HULL[2] // 下降趋势
第三层 - ATR突破信号

pinescript
xATR = ta.atr(5)
nLoss = key_value * xATR // 动态止损距离
入场条件
多头入场:

价格突破ATR追踪止损

Hull均线呈绿色上升趋势

超级趋势显示看涨信号

价格位于Hull均线上方

空头入场:

价格跌破ATR追踪止损

Hull均线呈红色下降趋势

超级趋势显示看跌信号

价格位于Hull均线下方

🟠 风险管理
仓位计算
text
基础仓位 = 初始资金 × 风险比例% / 入场价格 × 杠杆倍数
实际仓位 = 基础仓位 × 倍投系数 (1.0-5.0倍)
倍投模式
4倍模式:保守型,最大4倍加仓

5倍模式:均衡型,最大5倍加仓

5倍大模式:激进型,更快仓位增长

动态止盈系统
6级止盈目标:

TP1: 2.2×ATR (平仓30%)

TP2: 4.5×ATR (平仓25%)

TP3: 7.5×ATR (平仓20%)

TP4: 10.5×ATR (平仓10%)

TP5: 15.5×ATR (平仓7%)

TP6: 20.5×ATR (平仓3%)

ATR自适应调整:

短期ATR > 长期ATR:止盈距离+0.5

短期ATR < 长期ATR:止盈距离-0.5

🟠 参数配置
核心参数
pinescript
// 趋势敏感度
key_value = 2.0 // ATR乘数,值越小越敏感
supertrend_factor = 3.0 // 超级趋势因子

// 风险管理
risk_percent = 19.9 // 单次交易风险%
leverage = 1.0 // 杠杆倍数
Hull均线设置
pinescript
length = 73 // Hull周期 (55-200)
modeSwitch = "Hma" // Hull变体 (Hma/Thma/Ehma)
🟠 使用指南
初始设置
添加到BTCUSDT永续合约15分钟图表

配置Webhook信号ID和用户ID

根据风险偏好调整仓位参数

信号监控
多单信号:绿色箭头,Hull均线转绿

空单信号:红色箭头,Hull均线转红

趋势方向:超级趋势线颜色变化

执行流程
等待三重信号共振

确认入场条件满足

系统自动计算仓位和止盈

通过Webhook发送交易指令

高级功能
K线均线模式:使用Heikin-Ashi平滑价格

固定仓位模式:禁用倍投,固定仓位大小

多时间框架:集成更高时间框架确认

Отказ от ответственности

Информация и публикации не предназначены для предоставления и не являются финансовыми, инвестиционными, торговыми или другими видами советов или рекомендаций, предоставленных или одобренных TradingView. Подробнее читайте в Условиях использования.