HideTitle

HideTitle ();

Description

Removes the plot value from the graph title.

Example

declare lower;

plot PriceOsc = Average(close, 9) - Average(close, 18);
plot PriceOscLine = PriceOsc;
plot ZeroLine = 0;

PriceOsc.SetDefaultColor(Color.VIOLET);
PriceOsc.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
PriceOscLine.SetDefaultColor(Color.LIGHT_GRAY);
PriceOscLine.HideTitle();
ZeroLine.SetDefaultColor(Color.PINK);
ZeroLine.HideTitle();

The example draws the Price Oscillator study consisting of two plots - a histogram and line. The HideTitle function is used to deallocate equal values of PriceOsc and PriceOscLine plots and a permanent zero value for the ZeroLine plot from the status string.