CLICKANDGRAB808
New member
looking to see if someone can help me reverse this indicator for bearish with correct candle name and such
def MovingAvg = 52;
def Avg = SimpleMovingAvg(Close, MovingAvg);
def CandleBody = AbsValue(open - close);
def UpperWick = high - Max(open, close);
def LowerWick = Min(open, close) – low;
def Hammer = Lowerwick > CandleBody * 2 And Upperwick <= Lowerwick * 0.2 and Low < Low[1] and Low < Low[2] and Low < Low[3] and Low < Low[4] and Low < Low[5] and Low < Low[6] and Low < Low[7] and Low < Low[8] and Close > Avg;
Plot BullButterfly = Hammer; BullButterfly.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); BullButterfly.SetDefaultColor(GetColor(4));
BullButterfly.SetLineWeight(2);
def MovingAvg = 52;
def Avg = SimpleMovingAvg(Close, MovingAvg);
def CandleBody = AbsValue(open - close);
def UpperWick = high - Max(open, close);
def LowerWick = Min(open, close) – low;
def Hammer = Lowerwick > CandleBody * 2 And Upperwick <= Lowerwick * 0.2 and Low < Low[1] and Low < Low[2] and Low < Low[3] and Low < Low[4] and Low < Low[5] and Low < Low[6] and Low < Low[7] and Low < Low[8] and Close > Avg;
Plot BullButterfly = Hammer; BullButterfly.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); BullButterfly.SetDefaultColor(GetColor(4));
BullButterfly.SetLineWeight(2);