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

Inside Day and NR4 identification for Amibroker (AFL)
kaleem
about 13 years ago
Amibroker (AFL)

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

Identification of Inside Day and NR4 days.

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

Indicator / Formula

Copy & Paste Friendly
//Inside Day AND NR4 identification
id=H<Ref(H,-1) AND L>Ref(L,-1);
nr=H-L;
nr1=Ref(H,-1)-Ref(L,-1);
nr2=Ref(H,-2)-Ref(L,-2);
nr3=Ref(H,-3)-Ref(L,-3);

Vr= ADX()>40;
mk1=ADX()>Ref(ADX(),-1) AND Ref(ADX(),-1)<Ref(ADX(),-2);

mk2=ADX()<Ref(ADX(),-1) AND Ref(ADX(),-1)>Ref(ADX(),-2);

select1=nr<nr1 AND nr<nr2 AND nr<nr3 ;
select2=id; 
//Min(a,nr1)AND Min(a,nr2) AND Min(a,nr3) AND Vr;
Buy=select1;
PlotOHLC(O,H,L,C, "",colorBlack, styleCandle);
PlotShapes( select1 * shapeDigit4, colorBlue, 0, L, -20 );
PlotShapes( select2 * shapeDigit1, colorBlack, 0, L, -30 );


"\n Open = " + O ;
"\n High = " + H;
"\n Low = " + L;
"\n Close = " + C;
yr=Ref(H,-1)-Ref(L,-1);
"\n Yday Range = " + yr;
tht = (yr/2);
"\n Thrust = " + tht;
el=(O+tht);
es=(O-tht);
"\n Entry Long = " + el;
"\n Long Profit = " + (H-el);

"\n Entry Short = " + es;
"\n Short Profit = " + (es-L);

tr=H-L;
"\n Today's Range = " + tr;
ttht = (tr/2);
"\n Today's Thrust = " + ttht;

2 comments

1. Bhim Ahuja

Can somebody correct this – "\ Today’s Thrust = " + ttht;

Error-54, Incorrect/espace sequence Ln42, col2

2. administrator

Formula has been fixed.

Leave Comment

Please login here to leave a comment.

Back