开仓高收盘低吸单交易策略是一种趋势跟踪型交易策略。该策略通过判断K线的开盘价和收盘价的关系,识别价格的短期趋势方向,在趋势启动的时候建仓做多做空,达到快速进入市场,跟踪趋势的目的。
该策略主要判断K线的开盘价和收盘价的大小关系,当开盘价等于最低价时产生做多信号;当开盘价等于最高价时产生做空信号。这样可以捕捉到价格短期上的突破,跟踪趋势。
进入信号后,会立即使用固定数量开仓建立仓位。止损位会参考ATR指标设定,追踪市场波动。止盈目标是止损位到入场价之间的距离的RR比例部分。当价格触碰止损位或止盈目标时,会及时止损或止盈。
该策略还会在用户设定的时间点,例如美国市场收盘前半小时,将所有头寸平仓,防止隔夜大幅波动的风险。
该策略具有以下几点优势:
使用开盘价和收盘价的关系判断趋势方向,可以快速识别价格的短期突破。
入场信号简单明确,容易实现。
及时止损和止盈,可以锁定盈利,避免亏损扩大。
在特定时间段强制平仓,可以规避隔夜波动的风险。
无需选择具体交易品种,适用于外汇、股票、加密货币等市场。
该策略也存在一些风险:
使用ATR止损,在震荡行情中可能会频繁止损。
没有考虑交易品种和时间段的特点,存在过拟合的可能。
固定止盈目标可能与市场条件不匹配,无法持续盈利。
强制平仓时点不当可能错过趋势机会或承担额外亏损。
该策略可以从以下几个方面进行优化:
优化止损方式,在趋势行情中采用留守止损,在震荡行情中采用挂单止损等。
添加过滤条件,结合趋势指标等确定入场时点,避免假突破。
动态调整止盈位置,根据市场波动程度确定合理的止盈距离。
优化平仓时间,针对不同交易品种和地区选择合适的平仓时间。
开仓高收盘低吃单交易策略通过简单判定价格短期趋势的方式快速建立仓位。具有入场简单、止盈止损明确的优点。但也存在一些可以优化的方面,如止损方式、过滤信号等。通过不断测试和优化,可以使该策略 Parameters 适应更多市场环境,具有较强的适应性和盈利能力。
/*backtest start: 2024-01-01 00:00:00 end: 2024-01-31 23:59:59 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 // Open-High-Low strategy strategy('Strategy: OLH', shorttitle="OLH", overlay=true) // Inputs slAtrLen = input.int(defval=14, title="ATR Period for placing SL", group="StopLoss settings") showSLLines = input.bool(defval=false, title="Show SL lines in chart", tooltip="Show SL lines also as dotted lines in chart. Note: chart may look untidy.", group="Stolploss settings") // Trade related rrRatio = input.float(title='Risk:Reward', step=0.1, defval=2.0, group="Trade settings") endOfDay = input.int(defval=1500, title="Close all trades, default is 3:00 PM, 1500 hours (integer)", group="Trade settings") mktAlwaysOn = input.bool(defval=true, title="Markets that never closed (Crypto, Forex, Commodity)", tooltip="Some markers never closes. For those cases, make this checked.", group="Trade settings") lotSize = input.int(title='Lot Size', step=1, defval=1, group="Trade settings") // Utils green(open, close) => close > open ? true : false red(open, close) => close < open ? true : false body(open, close) => math.abs(open - close) lowerwick = green(open, close) ? open - low : close - low upperwick = green(open, close) ? high - close : high - open crange = high - low crangep = high[1] - low[1] // previous candle's candle-range bullish = close > open ? true : false bearish = close < open ? true : false // Trade signals longCond = barstate.isconfirmed and (open == low) shortCond = barstate.isconfirmed and (open == high) // For SL calculation atr = ta.atr(slAtrLen) highestHigh = ta.highest(high, 7) lowestLow = ta.lowest(low, 7) longStop = showSLLines ? lowestLow - (atr * 1) : na shortStop = showSLLines ? highestHigh + (atr * 1) : na plot(longStop, title="Buy SL", color=color.green, style=plot.style_cross) plot(shortStop, title="Sell SL", color=color.red, style=plot.style_cross) // Trade execute h = hour(time('1'), syminfo.timezone) m = minute(time('1'), syminfo.timezone) hourVal = h * 100 + m totalTrades = strategy.opentrades + strategy.closedtrades if (mktAlwaysOn or (hourVal < endOfDay)) // Entry var float sl = na var float target = na if (longCond) strategy.entry("enter long", strategy.long, lotSize, limit=na, stop=na, comment="Enter Long") sl := longStop target := close + ((close - longStop) * rrRatio) alert('Buy:' + syminfo.ticker + ' ,SL:' + str.tostring(math.floor(sl)) + ', Target:' + str.tostring(target), alert.freq_once_per_bar) if (shortCond) strategy.entry("enter short", strategy.short, lotSize, limit=na, stop=na, comment="Enter Short") sl := shortStop target := close - ((shortStop - close) * rrRatio) alert('Sell:' + syminfo.ticker + ' ,SL:' + str.tostring(math.floor(sl)) + ', Target:' + str.tostring(target), alert.freq_once_per_bar) // Exit: target or SL if ((close >= target) or (close <= sl)) strategy.close("enter long", comment=close < sl ? "Long SL hit" : "Long target hit") if ((close <= target) or (close >= sl)) strategy.close("enter short", comment=close > sl ? "Short SL hit" : "Short target hit") else if (not mktAlwaysOn) // Close all open position at the end if Day strategy.close_all(comment = "Close all entries at end of day.")