There are a couple of ways. 

1. The way Ami does it in their formulas is to use the file name. This is an 
example and the formula name is added by the function _DEFAULT_NAME().

Plot( CCI( periods ), _DEFAULT_NAME(), ParamColor( "Color",  colorCycle ), 
ParamStyle("Style")  );

2. Another way is to add the name in the first plot statement. This is an 
example where the chart name is Adaptive EMA.

Plot(fEMA, StrFormat("Adaptive EMA 2(%g)", aViday), colorBlue);

3. This is the one I use in most of my systems. It puts the file name and date 
on the top line and puts the OHLCV on the second line.

filename = "My Indicator";
_N(Title = StrFormat(filename + " - {{DATE}} \nOpen %g, Hi %g, Lo %g, Close %g 
Vol %g " + " {{VALUES}}", O, H, L, C, V ));

Barry

--- In [email protected], "mgallau" <m...@...> wrote:
>
> Can anyone please help in showing me how to display the name of the chart 
> formula being used in (say)  the top left hand corner of the pane ( before 
> the symbol, etc)
>


Reply via email to