Hallo everyone, There are any feature on amibroker Platform to hidden the Title of the chart or Indicators?
@ahm.montaser , to completely hide the title (actually making it empty), simply add as a last line:
Title = "";
For the indicators you can use the specific flag styleNoTitle
like in this snippet where the MA indicator value is not displayed in the title:
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));
Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();
_SECTION_BEGIN("MA");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 200, 1 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), colorOrange, styleLine | styleNoTitle | styleNoLabel | styleNoRescale | styleThick);
_SECTION_END();
You will use it by combining it with the OR operator |
with other 'style' flags.
See also this manual page.
thanks, for your effort
actually, I do that in the code, but I search about feature do that exclude the code.
This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.