Hi, I am having a problem with my Buy Sell Signal, it doesn’t appear on most of the charts ( does appear on Aud/usd and the occasional Equity ) I have attached 2 charts & the Buy Sell Signal code Your assistance would be appreciated Cheers Darren T // Buy Sell signal If close > highest[15](close[1]) AND close>WeightedAverage[90](Close) AND close>open THEN DRAWARROWUP(barindex, low[1]) COLOURED (50,205,50) ELSIF close < Lowest[15](close[1]) AND close<WeightedAverage[90](Close) AND close<open THEN DRAWARROWDOWN (barindex,High[1]) COLOURED(225,0,0) ENDIF Return