Name
多头锤形线交易策略Starbucks-Bullish-Hammer-Trading-Strategy
Author
ChaoZhang
Strategy Description
[trans]
该策略通过识别K线多头锤形线信号,结合MACD指标判断趋势方向,实现股票价格的追踪交易。在牛市中,当出现多头锤形线形态,并在MACD背景处于多头时,做多进入;在MACD转为空头后,平仓离场。
计算实体线段大小占比,确定多头锤形线。计算MACD指标判断趋势方向。在MACD为多头时,如出现多头锤形线信号,做多入场。设置止损和仓位大小。当MACD转为空头时离场平仓。
- 多头锤形线识别较为简单清晰
- MACD可有效判断多空趋势转换
- 根据趋势操作,避免被套
- 策略逻辑简单直接,容易实施
- 形态识别不完全准确,存在漏失信号
- MACD判定趋势转折存在滞后
- 交易频次较低,不适合高频交易
- 无法判断具体反转点,存在亏损风险
可适当放宽形态识别条件,缩短MACD参数,辅助其他指标等来控制风险。
- 优化锤形线识别的参数规则
- 测试MACD不同参数设置的效果
- 考虑结合其他指标判断趋势反转
- 在不同品种中测试参数健壮性
该策略整合形态和指标进行趋势判断,可实现稳定盈利。通过参数调优等进一步完善,可成为实用的量化交易策略。
||
This strategy identifies bullish hammer candlestick patterns and uses the MACD indicator to determine trend direction for trend following trades. During a bull market, go long when a bullish hammer appears while MACD is bullish. Close position when MACD turns bearish.
Identify bullish hammer by calculating body-to-range ratio. Use MACD to determine trend direction. When MACD is bullish, go long when a bullish hammer signal appears. Set stop loss and position sizing. Exit when MACD turns bearish.
- Bullish hammer recognition is simple and clear
- MACD effectively identifies trend reversals
- Following trends avoids whipsaws
- Simple and straightforward logic, easy to implement
- Pattern recognition is imperfect, signals can be missed
- MACD trend reversal identification has lag
- Low trade frequency unsuitable for high frequency trading
- Exact reversal points cannot be determined, risks losses
Risks can be mitigated by relaxing pattern criteria, shortening MACD parameters, adding secondary indicators etc.
- Optimize hammer pattern identification rules
- Test different MACD parameter settings
- Consider adding other indicators to determine reversals
- Test robustness across different products
This strategy integrates pattern and indicator analysis for trend determination, enabling steady profits. Further refinements like parameter optimization can make it a practical quant trading strategy.
[/trans]
Source (PineScript)
/*backtest
start: 2023-08-18 00:00:00
end: 2023-09-17 00:00:00
period: 3h
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/
// © FenixCapital
//@version=4
strategy("Starbux", overlay=true)
//VARIABLES
//Candlestick Variables
body=close-open
range=high-low
middle=(open+close)/2
abody=abs(body)
arange=abs(range)
ratio=abody/range
longcandle= (ratio>0.6)
bodytop=max(open, close)
bodybottom=min(open, close)
shadowtop=high-bodytop
shadowbottom=bodybottom-low
//Closing Variables
macd=macd(close,12,26,9)
[macdLine, signalLine, histLine] = macd(close, 12, 26, 9)
//plot(macdLine, color=color.blue)
//plot(signalLine, color=color.orange)
//plot(histLine, color=color.red, style=plot.style_histogram)
rsi=rsi(close,14)
sma50= sma(close,50)
sma200= sma(close,200)
exitrsi=rsi > 76
exitmacd=macdLine >0 and signalLine>0
//exitmacd=crossunder(macdLine,signalLine)
stopprice= crossunder(sma50,sma200)
//Candlestick Plotting
blh = (arange*0.33>=abody and close>open and shadowbottom>=abody*2 and shadowtop<=arange*0.1)
plotshape(blh, title= "Bullish Hammer", location=location.belowbar, color=color.lime, style=shape.arrowup, text="Bull\nHammer")
//beh = (arange*0.25>=abody and close<open and shadowtop>=abody*2 and shadowbottom<=arange*0.05)
//plotshape(beh, title= "Bearish Hammer", color=color.orange, style=shape.arrowdown, text="Bear\nHammer")
//bpu = (open>close and close>low and shadowbottom>2*abody)
//plotshape(bpu, title= "Black Paper Umbrella", color=color.red, style=shape.arrowdown, text="Black\nPaper\nUmbrella")
//Trend Signal
bull5= sma50 > sma200
bullmacd=macdLine>=0 and signalLine>=0
bearmacd=macdLine<= 0 and signalLine<=0
//Trading Algorithm
longCondition = blh and bearmacd and volume>volume[1]
if (longCondition)
strategy.order("Buy", true, 1, when=longCondition)
strategy.risk.max_position_size(10)
//strategy.risk.max_drawdown(25,strategy.percent_of_equity)
exitlong = exitmacd
if (exitlong)
strategy.close_all()
Detail
https://www.fmz.com/strategy/427138
Last Modified
2023-09-18 15:48:15