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

Close Above Previous days for Amibroker (AFL)
pkgmtnl
almost 14 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 2)
Tags:
amibroker, exploration

Simple formula to filter the Close above Previous days

Similar Indicators / Formulas

GapUp and Bearish Close (Reversal) _Daily
Submitted by indraji2001 almost 10 years ago
Three Day Balance Points
Submitted by nvkha almost 10 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
DIX50,20,10
Submitted by morgen almost 14 years ago
4-Day-Range Switch
Submitted by santho_sd almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
Volume_1=Param("V",20,1,100,1);
Buy=C>Ref(C,-1) AND V>Ref(V*(1+(Volume_1/100)),-1);
Filter =Buy;
AddColumn( Ref(C,-3), "DAY3 " );
AddColumn( Ref(V,-3), "VOL3 " );
AddColumn( Ref(C,-2), "DAY2 " );
AddColumn( Ref(V,-2), "VOL2 " );
AddColumn( Ref(C,-1), "DAY1 " );
AddColumn( Ref(V,-1), "VOL1 " );
AddColumn( Close, "Close" );
AddColumn( V, "Volume" ); 

0 comments

Leave Comment

Please login here to leave a comment.

Back