Hi, I am trying to show the weekly up and down signals in a day chart, but this is not working as it is not showing the yellow arrows. It works fine and shows yellow arrows when i change the timeframe to Day from input. here is the script i was trying to make it work. I am doing this as i wanted to see when the weekly up/down signals show up in a day chart.
Any help to fix this will be really helpful.
input displace = 0;
input length = 10;
input numDevDn = -0.8;
input numDevUp = 0.8;
input MOBO_timeFrame_higer = {default Week, Day, MONTH};
def moboPriceHtimeframe = close(period = MOBO_timeFrame_higer);
def upSig_higher = FW_MOBO_Basic(moboPriceHtimeframe, displace, length, numDevDn, numDevUp).BreakOutArrow;
def dnSig_higher = FW_MOBO_Basic(moboPriceHtimeframe, displace, length, numDevDn, numDevUp).BreakDownArrow;
plot up = upSig_higher;
plot dn = dnSig_higher;
up.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
up.SetDefaultColor(Color.yellow);
dn.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
dn.SetDefaultColor(Color.yellow);
Any help to fix this will be really helpful.
input displace = 0;
input length = 10;
input numDevDn = -0.8;
input numDevUp = 0.8;
input MOBO_timeFrame_higer = {default Week, Day, MONTH};
def moboPriceHtimeframe = close(period = MOBO_timeFrame_higer);
def upSig_higher = FW_MOBO_Basic(moboPriceHtimeframe, displace, length, numDevDn, numDevUp).BreakOutArrow;
def dnSig_higher = FW_MOBO_Basic(moboPriceHtimeframe, displace, length, numDevDn, numDevUp).BreakDownArrow;
plot up = upSig_higher;
plot dn = dnSig_higher;
up.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
up.SetDefaultColor(Color.yellow);
dn.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
dn.SetDefaultColor(Color.yellow);