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

Count UpTickDownTicks for Amibroker (AFL)
thakkarps
almost 13 years ago
Amibroker (AFL)

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

This is for short term trading

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
UpTick = C > Ref(C, -1);
DnTick = C < Ref(C, -1);
// then, say you want to count all upticks since the selected bar in a chart

SelBI = SelectedValue(BarIndex()) ;
TotUpTick = 0;
for(i = SelBI; i < BarCount; i++)
{
TotUpTick = TotUpTick + UpTick[i];
}
ConsecCZ10UP = BarsSince(C <= Ref(C,-1));
ConsecCZ10Dn = BarsSince(C >= Ref(C,-1));
updncz10=(Conseccz10up-Conseccz10dn);
Plot(0,"",colorBlack,styleLine);

Plot(updncz10,"UptickDntick",IIf(updncz10>0,colorBlue,colorRed),styleHistogram|styleThick);

2 comments

1. time9to4

THNK VRY MUCH

2. analystbank

Good Afl, those who are interested in such things, can also explore Lucas and given in this forum….

Leave Comment

Please login here to leave a comment.

Back