2606 뷰
This strategy is used as a benchmark to see how it compares with other strategies posted by me recently. In all, the below collection of candlestick patterns appears to be one of the best among the ones that can be found here, imho.
코멘트
//*** Doji Add-on
dsize = input(0.05, "Doji size", minval=0.01, step=.01)
doji=(abs(open - close) <= (high - low) * dsize)
plotshape(open > close and doji, title="Doji", style=shape.cross, location=location.abovebar, size=size.tiny, color=color.black, transp=20)
plotshape(open < close and doji, title="Doji", style=shape.cross, location=location.belowbar, size=size.tiny, color=color.black, transp=20)