Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Advanced Intermarket Analysis AFL for Amibroker (AFL)
dendo
almost 13 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
Intermarket, amibroker

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

Kavach Of Karna v2
Submitted by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn almost 13 years ago
3_6Day GuaiLiLv
Submitted by motorfly almost 13 years ago
Williams Alligator System
Submitted by durgesh1712 about 13 years ago
*Level Breakout system*
Submitted by Tinych about 13 years ago
Horizontal Live Priceline Tool
Submitted by northstar about 13 years ago

Indicator / Formula

Copy & Paste Friendly
//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

1. ole

What is the contribution? This is the same code as in the Users Guide with the addition of a few more symbols.

Leave Comment

Please login here to leave a comment.

Back