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

Strict Bullish Histogram, Oversold, Crossover Scanner for Amibroker (AFL)
curiosus
almost 12 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
oscillator, amibroker, scanner

Shortlists stocks that has the following criteria:

- Bullish histogram (from past 3 days)
- RSI below 30
- MACD bullish crossover

Note: To be used as Automatic Analysis > Scan

Similar Indicators / Formulas

Bullish Histogram Scanner
Submitted by curiosus almost 12 years ago
VIDYA
Submitted by johnhaber over 15 years ago
Ergodic Oscillator
Submitted by dljtrader almost 15 years ago
3 Days Track
Submitted by janet0211 over 15 years ago
Chande Momentum Oscillator
Submitted by klimpek almost 15 years ago

Indicator / Formula

Copy & Paste Friendly
Hist1 = MACD() - Signal();

Macd2 = Ref(MACD(),-1);
Sign2 = Ref(Signal(),-1);
Hist2 = Macd2 - Sign2;

Macd3 = Ref(MACD(),-2);
Sign3 = Ref(Signal(),-2);
Hist3 = Macd3 - Sign3;

Buy = Hist1 > Hist2 AND Hist2 > Hist3 AND RSI() < 30 AND Cross( MACD(), Signal()); 

0 comments

Leave Comment

Please login here to leave a comment.

Back