declare lower;
plot x1=100;
plot y1=0;
x1.setdefaultColor(color.gray);
y1.setdefaultColor(color.gray);
input bubblemover = 5; #used to move the bubble left and right
def n = bubblemover;
def n1 = n + 1;
input ud = 5; #used to move the bubble up and down
AddChartBubble(!isnan(close[n1]) and IsNaN(close[n]),
100,
"Enter Text Here\nEnter another line of text by using the\nbackwardslash n (\ n) function" + "\nYou can add data eg " + close[n1],
Color.WHITE, no);
AddChartBubble(!isnan(close[n1]) and IsNaN(close[n]),
100,
"Enter Text Here\nEnter another line of text by using the\nbackwardslash n (\ n) function" + "\nYou can add data eg " + close[n1],
Color.green, no);
AddChartBubble(!isnan(close[n1]) and IsNaN(close[n]),
100,
"Enter Text Here\nEnter another line of text by using the\nbackwardslash n (\ n) function" + "\nYou can add data eg " + close[n1],
Color.red, no);
AddChartBubble(!isnan(close[n1]) and IsNaN(close[n]),
0,
"Enter Text Here\nEnter another line of text by using the\nbackwardslash n (\ n) function" + "\nYou can add data eg " + close[n1],
Color.WHITE, yes);
AddChartBubble(!isnan(close[n1]) and IsNaN(close[n]),
0,
"Enter Text Here\nEnter another line of text by using the\nbackwardslash n (\ n) function" + "\nYou can add data eg " + close[n1],
Color.WHITE, yes);