Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Intermarket Analysis AFL for Amibroker (AFL)
Analyzing a variety of markets around the world can provide powerful insight into trading opportunities.
AmiBroker Indonesia – http://amibroker-4-bei.org
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | //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}}" ); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
What is the contribution? This is the same code as in the Users Guide with the addition of a few more symbols.