Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Close Above Previous days for Amibroker (AFL)
Simple formula to filter the Close above Previous days
Similar Indicators / Formulas
Indicator / Formula
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