// Downloaded From https://www.WiseStockTrader.com
//AmiBroker Indonesia - http://amibroker-4-bei.org

SetChartOptions(2, chartWrapTitle ); 
SetChartOptions(2, chartShowDates); 

_N( TickerList = ParamStr("Tickers", "^AORD,^BSESN,^HSI,^JKSE,^KLSE,^KS11,^N225,^NZ50,^SSEC,^STI^TWII,^FCHI,^FTSE,^GDAXI,^IXIC,^GSPC") );
NumBars = 20;
fvb = Status("firstvisiblebar");
JK = Foreign( "^DJI", "C" );
Plot( 100 * ( JK - JK[ fvb ] ) / JK[ fvb ],"^DJI", colorRed, styleThick| styleDashed );
for( i = 0; ( symbol = StrExtract( TickerList, i ) ) != ""; i++ )
{
 fc = Foreign( symbol, "C" );

 if( ! IsNull( fc[ 0 ] ) )
 {
   Plot( 100 * ( fc - fc[ fvb ] )/ fc[ fvb ], symbol, colorBlue + ( (2*i) % 100), styleThick );
 }
}
PlotGrid( 0, colorYellow );
_N( Title = " REGIONAL INDEX - {{VALUES}}" );