TradingView
capissimo
20 aug 2019 23:56

Candlestick Patterns Strategy (revisited) 

Euro / U.S. DollarFOREX.com

Beskrivning

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.
Kommentarer
capissimo
UPD: add this piece of code right before the Strategy section to display doji.

//*** 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)
Crypto-Engineer
pure repaint
rvoda268
@Crypto-Engineer, yhh bro you are right
igorekmiron
this is not a repaint. this is something else. but how the strategy doesn't work. what should I change ?
I think it's a promising start.
MRKCHAMPION
awesome work!!!
capissimo
@MRKCHAMPION, thx a lot)
nguyenvietnamkhanh
it's repainting. don't use this strategy
Mer