-
For the main description see the original indicator
Strooths Candle IndicatorThis one is modified so you can feed it a list as required in your strategy rather then the standard lists I defined.
to use
local bearish = {BreakawayType, BeltHoldType, ThreeBlackCrowsType} local bullish = {MorningStarType, ThreeWhiteSoldiersType, MarubozuType} local signal = CC_StroothsFindCDL(bearish, bullish)
to fine tune a little more
local bearish = {BreakawayType, BeltHoldType, ThreeBlackCrowsType} local bullish = {MorningStarType, ThreeWhiteSoldiersType, MarubozuType} local cp = CurrentPrice() local signal = CC_StroothsFindCDL(bearish, bullish, 1 CurrentInterval(), {cp.open, cp.high, cp.low, cp.close}, 3, 3, 4, true, false, false)