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

CumRSI for Amibroker (AFL)

Copy & Paste Friendly
/*
Based on the book "Short term Trading strategies that Work" by Larry Connor and Cesar Alvarez.
This explores for the stocks that have the CumRSI<=10 with has the high probability of profitability within the next 3-4 trading days.
*/

CumRSI=RSI(2)+Ref(RSI(2),-1);
Plot(RSI(2),"RSI(2)",colorBlue,styleLine);
Plot(95,"",colorRed,styleLine|styleThick|styleDashed);
Plot(5,"",colorGreen,styleLine|styleThick|styleDashed);

Filter=CumRSI<=10 AND MA(V,60)>=250000;
AddColumn(RSI(2),"RSI(2)");
AddColumn(V,"Volume");
Back