def na = double.nan;
def bn = barnumber();
def chground = 3;
input s1 = "C";
def p1 = close(s1);
def c1 = round(p1 - p1[1], chground);
def m1 = sign(c1);
def n1 = if m1 <> m1[1] then m1 else 0;
input s2 = "F";
def p2 = close(s2);
def c2 = round(p2 - p2[1], chground);
def m2 = sign(c2);
def n2 = if m2 <> m2[1] then m2 else 0;
input s3 = "SPY";
def p3 = close(s3);
def c3 = round(p3 - p3[1], chground);
def m3 = sign(c3);
def n3 = if m3 <> m3[1] then m3 else 0;
input s4 = "T";
def p4 = close(s4);
def c4 = round(p4 - p4[1], chground);
def m4 = sign(c4);
def n4 = if m4 <> m4[1] then m4 else 0;
input s5 = "Z";
def p5 = close(s5);
def c5 = round(p5 - p5[1], chground);
def m5 = sign(c5);
def n5 = if m5 <> m5[1] then m5 else 0;
input s6 = "Z";
def p6 = close(s6);
def c6 = round(p6 - p6[1], chground);
def m6 = sign(c6);
def n6 = if m6 <> m6[1] then m6 else 0;
input s7 = "AMD";
def p7 = close(s7);
def c7 = round(p7 - p7[1], chground);
def m7 = sign(c7);
def n7 = if m7 <> m7[1] then m7 else 0;
input s8 = "KO";
def p8 = close(s8);
def c8 = round(p8 - p8[1], chground);
def m8 = sign(c8);
def n8 = if m8 <> m8[1] then m8 else 0;
input s9 = "MRK";
def p9 = close(s9);
def c9 = round(p9 - p9[1], chground);
def m9 = sign(c9);
def n9 = if m9 <> m9[1] then m9 else 0;
input s10 = "GE";
def p10 = close(s10);
def c10 = round(p10 - p10[1], chground);
def m10 = sign(c10);
def n10 = if m10 <> m10[1] then m10 else 0;
input s11 = "NIO";
def p11 = close(s11);
def c11 = round(p11 - p11[1], chground);
def m11 = sign(c11);
def n11 = if m11 <> m11[1] then m11 else 0;
input s12 = "INTC";
def p12 = close(s12);
def c12 = round(p12 - p12[1], chground);
def m12 = sign(c12);
def n12 = if m12 <> m12[1] then m12 else 0;
input s13 = "CVS";
def p13 = close(s13);
def c13 = round(p13 - p13[1], chground);
def m13 = sign(c13);
def n13 = if m13 <> m13[1] then m13 else 0;
input s14 = "AAPL";
def p14 = close(s14);
def c14 = round(p14 - p14[1], chground);
def m14 = sign(c14);
def n14 = if m14 <> m14[1] then m14 else 0;
input s15 = "X";
def p15 = close(s15);
def c15 = round(p15 - p15[1], chground);
def m15 = sign(c15);
def n15 = if m15 <> m15[1] then m15 else 0;
def stkqty = 15;
def stks_pos = (m1>0) + (m2>0) + (m3>0) + (m4>0) + (m5>0) + (m6>0) + (m7>0) + (m8>0) + (m9>0) + (m10>0) +(m11>0) + (m12>0) + (m13>0) + (m14>0) + (m15>0);
def stks_neg = (m1<0) + (m2<0) + (m3<0) + (m4<0) + (m5<0) + (m6<0) + (m7<0) + (m8<0) + (m9<0) + (m10<0) +(m11<0) + (m12<0) + (m13<0) + (m14<0) + (m15<0);
addlabel(1, "----", color.black);
addlabel(1, stks_pos + " / " + stkqty + " stocks increased", color.green);
addlabel(1, absvalue(stks_neg) + " / " + stkqty + " stocks decreased", color.red);
addlabel(1, "----", color.black);
def stks_chg_pos = (n1>0) + (n2>0) + (n3>0) + (n4>0) + (n5>0) + (n6>0) + (n7>0) + (n8>0) + (n9>0) + (n10>0) +(n11>0) + (n12>0) + (n13>0) + (n14>0) + (n15>0);
def stks_chg_neg = (n1<0) + (n2<0) + (n3<0) + (n4<0) + (n5<0) + (n6<0) + (n7<0) + (n8<0) + (n9<0) + (n10<0) +(n11<0) + (n12<0) + (n13<0) + (n14<0) + (n15<0);
addlabel(1, "----", color.black);
addlabel(1, stks_chg_pos + " / " + stkqty + " stocks changed to increased", color.green);
addlabel(1, absvalue(stks_chg_neg) + " / " + stkqty + " stocks changed to decreased", color.red);
addlabel(1, "----", color.black);
addlabel(1, s1 + " |" + c1, (if n1>0 then color.green else if n1<0 then color.red else color.gray));
addlabel(1, s2 + " |" + c2, (if n2>0 then color.green else if n2<0 then color.red else color.gray));
addlabel(1, s3 + " |" + c3, (if n3>0 then color.green else if n3<0 then color.red else color.gray));
addlabel(1, s4 + " |" + c4, (if n4>0 then color.green else if n4<0 then color.red else color.gray));
addlabel(1, s5 + " |" + c5, (if n5>0 then color.green else if n5<0 then color.red else color.gray));
addlabel(1, "--", color.black);
addlabel(1, s6 + " |" + c6, (if n6>0 then color.green else if n6<0 then color.red else color.gray));
addlabel(1, s7 + " |" + c7, (if n7>0 then color.green else if n7<0 then color.red else color.gray));
addlabel(1, s8 + " |" + c8, (if n8>0 then color.green else if n8<0 then color.red else color.gray));
addlabel(1, s9 + " |" + c9, (if n9>0 then color.green else if n9<0 then color.red else color.gray));
addlabel(1, s10 + " |" + c10, (if n10>0 then color.green else if n10<0 then color.red else color.gray));
addlabel(1, "--", color.black);
addlabel(1, s11 + " |" + c11, (if n11>0 then color.green else if n11<0 then color.red else color.gray));
addlabel(1, s12 + " |" + c12, (if n12>0 then color.green else if n12<0 then color.red else color.gray));
addlabel(1, s13 + " |" + c13, (if n13>0 then color.green else if n13<0 then color.red else color.gray));
addlabel(1, s14 + " |" + c14, (if n14>0 then color.green else if n14<0 then color.red else color.gray));
addlabel(1, s15 + " |" + c15, (if n15>0 then color.green else if n15<0 then color.red else color.gray));
input test1 = no;
addlabel(test1, "----", color.black);
addlabel(test1, "signs of stock changes " + n1 + " " + n2 + " " + n3 + " " + n4 + " " + n5, color.cyan);
input test2 = no;
addlabel(test2, "----", color.black);
addlabel(test2, s1 + "|" + p1[1] + "/" + p1 + "|" + c1 + "|" + n1 , (if n1>0 then color.green else if n1<0 then color.red else color.gray));
addlabel(test2, s2 + "|" + p2[1] + "/" + p2 + "|" + c2 + "|" + n2 , (if n2>0 then color.green else if n2<0 then color.red else color.gray));
addlabel(test2, s3 + "|" + p3[1] + "/" + p3 + "|" + c3 + "|" + n3 , (if n3>0 then color.green else if n3<0 then color.red else color.gray));
addlabel(test2, s4 + "|" + p4[1] + "/" + p4 + "|" + c4 + "|" + n4 , (if n4>0 then color.green else if n4<0 then color.red else color.gray));
addlabel(test2, s5 + "|" + p5[1] + "/" + p5 + "|" + c5 + "|" + n5 , (if n5>0 then color.green else if n5<0 then color.red else color.gray));
[code]