yes, that is possible, to not show some labels.
i have updated the study, to allow choosing stats and/or time labels.
https://usethinkscript.com/threads/mtf-arrows-choose-1-of-3-sets-of-5-periods.8959/
if you downloaded the updated study and dont want to experiment with the code, then stop reading.
----------------------------------------
if you want to experiment with some label code, read this
to keep some label code from showing a label,
. add a # in front of the code line, to disable it forever.
. change the 1st parameter in an addlabel( ), so it is a 0 or false value.
. add/change an input variable to the study and add/change it in the addlabel(). (what i did)
to disable the stats labels, find these code lines and add a # . code line numbers in () for ref, to make it easier to find them.
# AddLabel(show_labels, "-", Color.BLACK); (167)
# addlabel(show_labels, arrow_data, color.yellow); (168)
# addlabel(show_labels , " [" + off2 + "] ", color.yellow); (169)
# AddLabel(show_labels, "-", Color.BLACK); (201)
# AddLabel(show_labels, "Agg set: " + mtf_time_group, Color.YELLOW ); (202)
or change the addlabel() 1st parameter variable, to control them separately from other labels,
input show_stats = no;
AddLabel(show_stats, "-", Color.BLACK); (167)
addlabel(show_stats, arrow_data, color.yellow); (168)
addlabel(show_stats , " [" + off2 + "] ", color.yellow); (169)
AddLabel(show_stats, "-", Color.BLACK); (201)
AddLabel(show_stats, "Agg set: " + mtf_time_group, Color.YELLOW ); (202)