OPEN-SOURCE SCRIPT

Cup and Handle Pattern

//version=5
indicator("Cup and Handle Pattern", overlay=true)

// 計算杯形態的參數
cupDepth = input(5, title="Cup Depth")
handleDepth = input(2, title="Handle Depth")
minCupWidth = input(10, title="Minimum Cup Width")
minHandleWidth = input(5, title="Minimum Handle Width")

var float cupLow = na
var float cupHigh = na
var float handleLow = na
var float handleHigh = na

if close[1] < close[2] and close[2] < close[3]
cupLow := low[3]
cupHigh := high[1]

if close[1] > close[2] and close[2] > close[3]
handleLow := low[3]
handleHigh := high[1]

// 繪製杯形態
plotshape(cupLow, style=shape.labeldown, location=location.absolute, color=color.green, size=size.small, title="Cup Low")
plotshape(cupHigh, style=shape.labelup, location=location.absolute, color=color.red, size=size.small, title="Cup High")

// 繪製把手形態
plotshape(handleLow, style=shape.labeldown, location=location.absolute, color=color.blue, size=size.small, title="Handle Low")
plotshape(handleHigh, style=shape.labelup, location=location.absolute, color=color.orange, size=size.small, title="Handle High")
Pine utilities

오픈 소스 스크립트

진정한 TradingView 정신에 따라, 이 스크립트의 저자는 트레이더들이 이해하고 검증할 수 있도록 오픈 소스로 공개했습니다. 저자에게 박수를 보냅니다! 이 코드는 무료로 사용할 수 있지만, 출판물에서 이 코드를 재사용하는 것은 하우스 룰에 의해 관리됩니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

차트에 이 스크립트를 사용하시겠습니까?

면책사항