You have spaces after comma in your ticker list.
Also I said
So if foreign symbol has missing data at start then it won't plot
Here is modified version taking care of spaces in ticker list as well as taking care of missing data at start.
_SECTION_BEGIN("Relative Performance");
/// Role model code by www.amibroker.com at:
/// @link https://www.amibroker.com/kb/2015/08/29/how-to-add-symbol-labels-to-relative-performance-chart/
/// modified version taking care of spaces in tickerlist
/// as well as plotting symbols having missing data at start
/// as well as possibility of using range markers
/// https://forum.amibroker.com/t/fullname-in-relative-performance/8260/9
/// modified by fxshrat@gmail.com
SetChartOptions( 0, chartShowDates | chartShowArrows | chartWrapTitle );
_N( TickerList = ParamStr("Tickers", "") );
fontsize = Param("Label font size", 9, 4, 30, 1 );
bi = BarIndex();
fvb = FirstVisibleValue(bi);
fvb = Max(fvb,BeginValue(bi));
lvb = Min(LastValue(bi),EndValue(bi));
barcond = bi >= fvb AND bi <= lvb;
sc = 100 * ( C - C[ fvb ] ) / C[ fvb ];
Plot( IIf( barcond, sc, Null), FullName(), color = colorBlue );
x = lvb + 1;
y = sc[lvb];
PlotTextSetFont( Name(), "Arial", fontsize, x, y, GetChartBkColor(), color, -fontsize/2 );
for ( i = 0; ( symbol = StrExtract( tickerlist, i ) ) != ""; i++ ) {
sym = StrTrim(symbol, " ");
SetForeign( sym, 1 );
NOT_null = ! IsNull( C );
fc = SparseCompress(NOT_null, C);
// if foreign symbol has missing data at start
// then go to next available bar
maxbar = Max(NullCount(fc), fvb);
fc = IIf(barcond, 100 * ( fc - fc[ maxbar ] ) / fc[ maxbar ], Null);
fc = SparseExpand(NOT_null, fc);
Plot( fc, FullName() /*+ ", " + sym*/, color = colorLightOrange + ( ( 2 * i ) % 15 ), styleLine );
y = fc[lvb];
PlotText( sym, x, y, GetChartBkColor(), color, -fontsize/2 );
RestorePriceArrays();
}
PlotGrid( 0, colorYellow );
_N( Title = "{{NAME}} - Relative Performance [%]: {{VALUES}}" );
_SECTION_END();
It works.
As you can see in picture.

And if you want to mark range then you have to double click on chart to activate range markers for start and end date.
