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

RAVI and ADX System for Amibroker (AFL)
skanker
about 14 years ago
Amibroker (AFL)

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

Use RAVI and ADX to determine if there is momentum for a trend.

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 almost 10 years ago
Kase CD V2batu
Submitted by batu1453 almost 10 years ago
Ichimoku
Submitted by prashantrdx almost 10 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas about 13 years ago
LANDIS Modified
Submitted by isfandi about 13 years ago

Indicator / Formula

Copy & Paste Friendly
// Settings
PositionSize = -25; //Optimize ("pos.size",-20, -100, -5, 5); 
SetTradeDelays(1, 1, 1, 1);
BuyPrice = Open;
SellPrice = Open; //try to sell at the end of the day
ApplyStop( stopTypeLoss, stopModePercent, 10); //Optimize ("stop.loss", 6, 1, 20, 1));
ApplyStop( stopTypeTrailing, stopModePercent, 50); //Optimize ("stop.trail", 50, 2, 60, 2));

ClosePrice = C < 90; //Optimize ("close.price", 90, 10, 120, 5);
ShortMA = MA (Close, 11); //Optimize ("shortMA", 7, 4, 14, 1));
LongMA = MA(Close,76); //Optimize ("LongMA", 65, 50, 80, 2));
xravi = (100 * (ShortMA-LongMA)/LongMA);
ravi = IIf (xravi<0,-xravi,xravi);

ADXtrigger = ADX (18) > 45; //Optimize ("ADX.level", 45, 5, 50, 5);
RAVIBuyTrigger = Ravi > 30; //Optimize ("ravi.buy", 10, 10, 50, 2);
RAVISellTrigger = Ravi < 17; //Optimize ("ravi.sell", 5, 2, 50, 5);
Buy = RaviBuyTrigger AND ADXTrigger AND ClosePrice; //Optimize ("ravi.num", 10, 2, 50, 2);
Sell = RaviSellTrigger;

0 comments

Leave Comment

Please login here to leave a comment.

Back