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

Modified ichimoku indicator for Amibroker (AFL)

Rating:
5 / 5 (Votes 2)
Tags:
amibroker

i have modified this ichimoku indicator slightly for better results.

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
/*Sun & Cloud*/
/* Modified from Ichimoku chart by CC Chen*/
 
Long2 = EMA(Close,7);
Long1 = EMA(Close,6);
Long3 = OBV();
Long4 = Ref(OBV(),-2);
K=(H+2*C+L)/4;
Z=  ( HHV( H, 3 ) + LLV( L, 3) )/2 ;
SP=IIf(K>=Z*1.05,1.10*Z,IIf(K<Z*1.05 AND K>=Z,1.0*Z,IIf(K<Z,0.9*Z,0.9*Z)));
M=IIf(Long1>long2,Long2,Long1);
 
MaxGraph = 5;
Graph0=M;
Graph1 = SP;
Graph2=Z;
Graph3=Long2;
Graph4=Long1;
 
Graph0Style=6;
Graph1Style =8;
Graph2Style=4;
Graph3Style=6;
Graph4Style=6;
 
Graph0Color=20;
Graph1Color=3;
Graph2Color=5;
Graph3Color=2;
Graph4Color=8;
 
Title=Name() + "{Sun&Cloud} : "+WriteIf(Long1>long2 AND Long3>Long4,"AGNI","COMET");
 

1 comments

1. satish1b

What is this?
pls explane

Leave Comment

Please login here to leave a comment.

Back