首页/量化教学/Pine量化入门/ Pine入门 05 :做个策略胜率100% | 圣杯轻轻拿捏~
Pine入门 05 :做个策略胜率100% | 圣杯轻轻拿捏~
2024年05月28日

相关代码:

//@version=5
indicator(title="枢轴高点与低点", shorttitle="枢轴点")

lengthL = input.int(11, title="左侧长度", minval=1)
lengthR = input.int(11, title="右侧长度", minval=1)

pivotH = ta.pivothigh(lengthL, lengthR)
pivotL = ta.pivotlow(lengthL,  lengthR)

bgcolor(color = bool(pivotH? color.new(color.red, 70)
                             : bool(pivotL? color.new(color.green, 70: na,
         offset = -lengthR)

plotshape(pivotH, offset = 0-lengthL,
         text = "卖出", textcolor = color.red,  
         style = shape.arrowdown, color=color.new(color.red, 0),  
         size = size.auto, location = location.abovebar)
plotshape(pivotL, offset = 0-lengthL,
         text = "买入", textcolor = color.lime,
         style = shape.arrowup,   color=color.new(color.lime, 0),
         size = size.auto, location = location.belowbar)


Pine学习交流,请扫码加好友:

截图-20240527104356













免责声明
这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。
要开始Pine量化创作,
请微信扫码,加入我们: