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

Raptor II for next day for Amibroker (AFL)

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

Raptor II AFL works only in “Explore” mode. It detects stock which has been beaten a quite and set to bounce back next day.

Very rare signals are generated however accurate whenever it finds it

Similar Indicators / Formulas

Exploration Formula for Intraday
Submitted by sajid almost 14 years ago
Tony Crabels Intraday Signal Chart
Submitted by sajid about 14 years ago
Nw High New Low
Submitted by Ahmadbrebes over 13 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
Strength & weakness
Submitted by mfoysalar about 14 years ago
Bollinger Breakout Exploration
Submitted by tiptipon over 10 years ago

Indicator / Formula

Copy & Paste Friendly
SetTradeDelays(0 ,0 ,0 ,0 ); 

HV = 100* StDev(log(C/Ref(C,-1)),100)*sqrt(252);
SetForeign("SP-500");
VolSP = MA(V*C,65);
RestorePriceArrays();

xvolFilter = 3/1000; 
reqs = MA(C * V,20) > (volSP*xvolFilter);

BuyHR =
reqs AND
C > MA(C, 200 ) AND C < MA(C,20) AND
RSI(2) < 5 AND 
(ROC(C, 5) < -15 OR ROC(C, 2) < - 15/2) AND 
ADX(10) > 20 AND
HV > 20 AND
C>50
;

Lmt = 8;
PriceTrigger = Ref(C, -1) * (1 - Lmt/100);
Trigger = L < PriceTrigger ;
bp = Min(O, PriceTrigger );
BuyReal = Ref(BuyHR , -1) AND L < PriceTrigger ;

Buy = BuyReal;
BuyPrice = bp ;

////////////////////////////////////////////////////////////////////////////////
// Sell Rules
Sell = RSI(2) > 70 AND (BarsSince(Buy) > 0);;
SellPrice = O;

/////////////////////////////////////////
Sell = ExRem(Sell, Buy);
InPos = Flip(Buy, Sell);

Filter = ((BuyHR OR INPos) OR Sell ) ;

PriceTrigger2 = Ref(C, 0) * (1 - Lmt/100);
action = IIf(Sell, -1, IIf(InPos, 0, IIf(BuyHR, PriceTrigger2, -2)));

AddColumn(action,"Buy(Gr); Hold(Yellow); Sell(Red)",1.2,colorDefault,IIf(action > 0, colorGreen, IIf(action==0, colorYellow, colorRed))); 

AddColumn(C,"Close",6.2);
AddColumn(HV ,"HV100",6.1);
AddColumn(1000*MA(C * V,20)/volSP, "LF", 2.2);

8 comments

1. sivaraaman

please explain how to work with this afl.
thanks in advance. iam new to this ,.
by sivaraaman

2. y2k_netizen

In Amibroker Go to > Analysis > Automatic Analysis > Select this indicator
Click on “Explore” If any signal is generated it will display it

3. farhan86a

The back-testing results are unbelievable!

4. nileyshsane

Not Working?

5. sachin11

This is not working.

6. anandsolanke

Dear admin… Help me…it is giving result but how to read it…it is total confused

7. passion2trade

not working

8. SPASHA

SIMPLY WASTE

Leave Comment

Please login here to leave a comment.

Back