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
over 12 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 almost 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn over 12 years ago
3_6Day GuaiLiLv
Submitted by motorfly over 12 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago
Horizontal Live Priceline Tool
Submitted by northstar over 12 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