Cmeeker778
New member
Any help would be appreciated. Seems like it should be rather easy to write, but not sure where to start.
I have this, but I get an error for the "addchartbubble"
I have this, but I get an error for the "addchartbubble"
Code:
input count = 5;
def l = low(period = aggregationperiod.FIVE_MIN);
def h = high(period = aggregationperiod.FIVE_MIN);
def FiveBarLow = lowest(l,count);
def FiveBarHigh = highest(h,count);
Addchartbubble(1,"Lowest in Last 5 Minutes: " + FiveBarLow, color.white);
Addchartbubble(1,"Highest in Last 5 Minutes: " + FiveBarHigh, color.white);
Last edited by a moderator: