Add | styleNoTitle to the style of plot statements for e.g. in the above example
Plot(HullMa, _DEFAULT_NAME(), ParamColor("Hull Moving Average Color", colorGreen),styleDots|stylenolabel|styleNoTitle);
for suppressing the entire Title line, use something like this
Title = "I hate Title Lines";
or just
Title = "";
Happy