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

Ichimoku v2 for Amibroker (AFL)
Alok
about 14 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
trading system, amibroker, ichimoku, optimize

I found another one of them, but this does not have clouds

Optimizer can be used to find optimum periods for SL and TL.

Screenshots

Similar Indicators / Formulas

NMA v 3.6 a optimiser
Submitted by gopal over 13 years ago
Brian Wild - Ichimoku
Submitted by kaiji over 14 years ago
CCI System
Submitted by sandipsc almost 14 years ago
Ichimoku Complete Buy & Sell
Submitted by morgen almost 14 years ago
Augubhai's ORB system v1.1
Submitted by augubhai over 11 years ago
EMA CROSSOVER
Submitted by sudesh almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
Title = "{{NAME}} - {{INTERVAL}} {{DATE}} - Ichimokku -11: {{VALUES}}";
// Optimizer can be used to find optimum periods for SL and TL 

SL_Prd = Optimize( "No_of_Days for SL", 22, 18, 24, 1 );
TL_Prd = Optimize( "No_of_Days for TL", 7, 5, 11, 1 );

SL = ( HHV( H, SL_Prd) + LLV( L, SL_Prd) )/2;
TL = ( HHV( H, TL_Prd) + LLV( L, TL_Prd) )/2;

Span1 = Ref( ( SL + TL )/2, -SL_Prd );
Span2 = Ref( (HHV( H, 2*SL_Prd) + LLV(L, 2*SL_Prd))/2, -SL_Prd);

MaxGraph = 6;
GraphXSpace = 15; /* create empty space of 15% top and bottom of chart */

Plot(SL,"SL",colorBlue,styleThick); // standard, base, or kijun-sen line
Plot(TL,"TL",colorRed,styleThick); // turning, conversion, or tenkan-sen line

Plot(Close,"Close",colorLightGrey,styleLine,styleThick); // price close

Buy  = Cross(C, TL); 
Sell = Cross(TL, C) ; 
Equity(1,0);

IIf( (Buy),PlotShapes(shapeUpArrow*Buy,colorBlue),0);
IIf( (Sell),PlotShapes(shapeDownArrow*Sell,colorRed),0);

Plot( Volume, _DEFAULT_NAME(), ParamColor("Color", colorBlueGrey ), ParamStyle( "Style", styleHistogram | styleOwnScale | styleThick, maskHistogram  ), 2 );


_SECTION_END();

2 comments

1. JoeTrader

From the AFL Function Reference:

“Equity() function is using OLD backtester that is missing some recently added features such as multiple-currency handling and scaling in/out.

New code should rather use new, portfolio-level backtester, i.e. ~~~EQUITY special ticker."

Unfortunately, ~~~EQUITY cannot be used in Backtester. It’s a problem unaddressed that I can find.

2. administrator

Doesn’t the new backtester automatically use ~~~EQUITY?

Leave Comment

Please login here to leave a comment.

Back