// Downloaded From https://www.WiseStockTrader.com value = 100*(Open-Low)/(High-Low)-50; bullishCandleStrength = IIf(Close > Open, value, 0); bearishCandleStrength = IIf(Close <= Open, value, 0); Plot(bullishCandleStrength, "Bullish Candle Strength", colorGreen, styleHistogram | styleThick); Plot(bearishCandleStrength, "Bearish Candle Strength", colorRed, styleHistogram | styleThick); Plot(50, "", colorDarkYellow, styleDashed); Plot(-50, "", colorDarkYellow, styleDashed);