超级趋势基础策略是一种基于三个强大指标的可靠且盈利的算法交易策略:超级趋势指标(ATR)、相对强弱指数(RSI)和指数移动平均线(EMA)。该策略旨在辨识市场趋势的方向和强度,在最佳的入场点进入市场,在到达止损点或止盈点时退出市场。
该策略使用超级趋势指标判断价格是否处于上升或下降趋势中。超级趋势指标基于平均真实波幅和一个因子,当价格高于超级趋势时为上升趋势,当价格低于超级趋势时为下降趋势。
相对强弱指数用于检测是否过热和超买或超卖的状况。当RSI高于50时为强势市场,反之为弱势。RSI可过滤假性突破。
指数移动平均线用于判断长期趋势方向。当价格高于EMA时为上升趋势,低于时为下降趋势。可用于确认交易方向。
该策略的交易信号如下:
多头入场:价格高于超级趋势且RSI高于50且价格高于EMA时做多 多头出场:价格收盘低于超级趋势或止损或止盈
空头入场:价格低于超级趋势且RSI低于50且价格低于EMA时做空
空头出场:价格收盘高于超级趋势或止损或止盈
止损和止盈可设定为入场价的百分比。
该策略具有以下优势:
使用三个指标组合,可靠判断趋势方向
超级趋势指标可清晰判断上升趋势和下降趋势
RSI指标可过滤假突破,避免超买超卖
EMA可用于确认大趋势方向
策略信号简单明确,容易操作
可自定义ATR周期、RSI参数和EMA周期进行优化
可设定止损止盈来控制风险
可仅做多或仅做空以适应不同市场环境
可在任何时间周期使用
该策略主要风险如下:
大趋势反转时超级趋势指标会产生滞后,可能导致损失
设定的止损止盈过小可能无法抓住大行情
EMA无法判断趋势反转点
无法判断背离现象
会有一定程度的波动风险和时间交易风险
对应解决方法:
结合其它指标判断趋势反转
优化止损止盈参数
结合其它指标判断趋势反转
结合背离指标
适当调整仓位管理
该策略可从以下方面进行优化:
优化ATR周期参数,以平衡灵敏度和稳定性
优化RSI参数,提高准确率
优化EMA周期,使其适应不同市场
增加其他指标判断反转,如MACD、KD等
增加背离指标判断反转
结合波浪理论判断反转
使用机器学习等算法动态优化参数
增加高级止损算法,如跟踪止损、移动止损等
优化仓位管理,适应不同波动率市场
测试更复杂的进出场条件组合
超级趋势基础策略整合超级趋势、RSI和EMA三大指标,形成一个简单实用的趋势跟踪策略。它可清晰识别趋势方向,过滤假信号,确认大趋势。同时有清晰的入场出场规则和止损止盈设置。该策略易于操作,可靠获利,适用于任何时间周期。通过优化指标参数、增加趋势判断工具、改进止损算法等方式,可以将该策略优化为一个更强大的交易系统。
/*backtest start: 2023-09-10 00:00:00 end: 2023-10-10 00:00:00 period: 2h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © JS_TechTrading //@version=5 // strategy("Supertrend", overlay=true,default_qty_type =strategy.percent_of_equity,default_qty_value = 1,process_orders_on_close = false) // group string//// var string group_text000="Choose Strategy" var string group_text0="Supertrend Settings" var string group_text0000="Ema Settings" var string group_text00="Rsi Settings" var string group_text1="Backtest Period" var string group_text2="Trade Direction" // var string group_text3="Quantity Settings" var string group_text4="Sl/Tp Settings" //////////////////// option_ch=input.string('Pullback',title = "Type Of Strategy",options =['Pullback','Simple']) //atr period input supertrend atrPeriod = input(10, "ATR Length",group = group_text0) factor = input.float(3.0, "Factor", step = 0.01,group=group_text0) [supertrend, direction] = ta.supertrend(factor, atrPeriod) bodyMiddle = plot((open + close) / 2, display=display.none) upTrend = plot(direction < 0 ? supertrend : na, "Up Trend", color = color.green, style=plot.style_linebr) downTrend = plot(direction < 0? na : supertrend, "Down Trend", color = color.red, style=plot.style_linebr) fill(bodyMiddle, upTrend, color.new(color.green, 90), fillgaps=false) fill(bodyMiddle, downTrend, color.new(color.red, 90), fillgaps=false) long=direction < 0 ? supertrend : na short=direction < 0? na : supertrend longpos=false shortpos=false longpos :=long?true :short?false:longpos[1] shortpos:=short?true:long?false:shortpos[1] fin_pullbuy= (ta.crossunder(low[1],long) and long and high>high[1]) fin_pullsell=(ta.crossover(high[1],short) and short and low<low[1]) //Ema 1 on_ma=input.bool(true,"Ema Condition On/Off",group=group_text0000) ma_len= input.int(200, minval=1, title="Ema Length",group = group_text0000) ma_src = input.source(close, title="Ema Source",group = group_text0000) ma_out = ta.ema(ma_src, ma_len) ma_buy=on_ma?close>ma_out?true:false:true ma_sell=on_ma?close<ma_out?true:false:true // rsi indicator and condition // Get user input en_rsi = input.bool(true,"Rsi Condition On/Off",group = group_text00) rsiSource = input(title='RSI Source', defval=close,group = group_text00) rsiLength = input(title='RSI Length', defval=14,group = group_text00) rsiOverbought = input(title='RSI BUY Level', defval=50,group = group_text00) rsiOversold = input(title='RSI SELL Level', defval=50,group = group_text00) // Get RSI value rsiValue = ta.rsi(rsiSource, rsiLength) rsi_buy=en_rsi?rsiValue>=rsiOverbought ?true:false:true rsi_sell=en_rsi?rsiValue<=rsiOversold?true:false:true // final condition buy_cond=option_ch=='Simple'?long and not(longpos[1]) and rsi_buy and ma_buy:option_ch=='Pullback'?fin_pullbuy and rsi_buy and ma_buy:na sell_cond=option_ch=='Simple'?short and not(shortpos[1]) and rsi_sell and ma_sell:option_ch=='Pullback'?fin_pullsell and rsi_sell and ma_sell:na //backtest engine start = input(timestamp('2005-01-01'), title='Start calculations from',group=group_text1) end=input(timestamp('2045-03-01'), title='End calculations',group=group_text1) time_cond =true // Make input option to configure trade direction tradeDirection = input.string(title='Trade Direction', options=['Long', 'Short', 'Both'], defval='Both',group = group_text2) // Translate input into trading conditions longOK = (tradeDirection == "Long") or (tradeDirection == "Both") shortOK = (tradeDirection == "Short") or (tradeDirection == "Both") // strategy start if buy_cond and longOK and time_cond and strategy.position_size==0 strategy.entry('long',direction = strategy.long) if sell_cond and shortOK and time_cond and strategy.position_size==0 strategy.entry('short',direction =strategy.short) // fixed percentage based stop loss and take profit // User Options to Change Inputs (%) stopPer = input.float(1.0,step=0.10, title='Stop Loss %',group =group_text4) / 100 takePer = input.float(1.0,step =0.10, title='Take Profit %',group =group_text4) / 100 // Determine where you've entered and in what direction longStop = strategy.position_avg_price * (1 - stopPer) shortStop = strategy.position_avg_price * (1 + stopPer) shortTake = strategy.position_avg_price * (1 - takePer) longTake = strategy.position_avg_price * (1 + takePer) if strategy.position_size > 0 strategy.exit(id='Close Long',stop=longStop, limit=longTake) if strategy.position_size < 0 strategy.exit(id='Close Short',stop=shortStop, limit=shortTake) //PLOT FIXED SLTP LINE plot(strategy.position_size > 0 ? longStop : na, style=plot.style_linebr, color=color.new(color.red, 0), linewidth=1, title='Long Fixed SL') plot(strategy.position_size < 0 ? shortStop :na, style=plot.style_linebr, color=color.new(color.red, 0), linewidth=1, title='Short Fixed SL') plot(strategy.position_size > 0 ? longTake : na, style=plot.style_linebr, color=color.new(color.green, 0), linewidth=1, title='Long Take Profit') plot(strategy.position_size < 0 ? shortTake : na, style=plot.style_linebr, color=color.new(color.green, 0), linewidth=1, title='Short Take Profit') //