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

2 Day RSI filter/buy for Amibroker (AFL)
davemmm
almost 14 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 4)
Tags:
trading system, amibroker, exploration

Simple filter/buy for stocks trading above their 150 day MA It is based on a short term 2 day RSI with ability to set buy/sell date from the parameters screen. liquidity and no. of positions.

Similar Indicators / Formulas

Reaction Trend System
Submitted by ajayjain90 almost 14 years ago
Behgozin Strength Finder
Submitted by hotaro3 over 11 years ago
KPL with RSI
Submitted by pdkg_gal almost 14 years ago
Intraday Trend Break System
Submitted by nishantndk almost 14 years ago
ema crossovers
Submitted by rushee.g1100 almost 14 years ago
Ribbon Trading System
Submitted by trader22 about 14 years ago

Indicator / Formula

Copy & Paste Friendly
PositionQuan   = Param("No. of Positions", 5, 1, 20, 1);
SetOption("InitialEquity", 10000 );
PositionSize = 10000/PositionQuan;
MarketLiquidity = Param("Liquidity in Mill's", 0.3, 0.1, 10, 0.1) *1000000;

BuyStartDate = ParamDate( "Buy Start Date", "2000-01-01" );
EndDate = ParamDate( "Last Buy Date", "2020-01-01" );
DateOK = IIf(DateNum() >= BuyStartDate  AND DateNum() <= EndDate, 1, 0);
LiqudityOK = MA(V, 20) * MA(C, 20) >= MarketLiquidity;


RSIPeriod = Param("RSI Period", 7, 2, 10, 1);
EntryRSI = Param("EntryRSI", 4, 4, 20, 2);

Buy = Filter = RSI(RSIPeriod ) < EntryRSI  AND LiqudityOK AND DateOK AND C > MA(C,150) ;

Sell = RSI(RSIPeriod ) > 65;
AddColumn(C, "Close");

0 comments

Leave Comment

Please login here to leave a comment.

Back