Chào Bạn Ranluc,
Bạn giúp mình code Relative Performance của Ami với
Relative Performance là hàm có sẵn của Ami mà bạn, nếu không tìm thấy thì bạn copy đoạn này.
_SECTION_BEGIN("Relative Performance");
type = ParamList("Ticker Type", "Favorite|Sectors|Type-In") ;
Favorite= CategoryGetSymbols(categoryFavorite,1 );
Sectors = "VNCOND,VNCONS,VNENE,VNFIN,VNHEAL,VNIND,VNIT,VNMAT,VNREAL,VNUTI";
TypeIn = ParamStr("Type-In","BID,BVH,CTG,FPT,GAS,HPG,MBB,MWG,MSN,VCB,VIC,VNM");
symbols = writeif(type=="Favorite", Favorite, writeif(type=="Sectors",Sectors,TypeIn));
NumBars = 20;
fvb = Status("firstvisiblebar");
Plot( 100 * ( C - C[ fvb ] ) / C[ fvb ], Name(), colorBlue );
for( i = 0; ( symbol = StrExtract( symbols, i ) ) != ""; i++ )
{
fc = Foreign( symbol, "C" );
if( ! IsNull( fc[ 0 ] ) )
{
Plot( 100 * ( fc - fc[ fvb ] )/ fc[ fvb ], symbol, colorLightOrange + ( (2*i) % 15 ), styleLine );
}
}
PlotGrid( 0, colorYellow );
_N( Title = "{{NAME}} - Relative Performance [%]: {{VALUES}}" );
_SECTION_END();