Maxwell Ogunsanya / Publications
Forum
MQL4 my indicator only shows a straight line please help!!
I am trying to convert an indicator I found on tradingview to MQL4: ============================================== BullTrend = (close - lowest(low, 50)) / atr(5) BearTrend = (highest(high, 50) - close) / atr(5) BearTrend2= -1*BearTrend Trend = BullTrend - BearTrend