Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Scan Candlestick Engulfing Pattern Key Reversals (buy & Sell) by D Nayab for Amibroker (AFL)
Scan Candlestick Engulfing Pattern Key Reversals (buy & Sell) by D Nayab
Indicator / Formula
/* SCAN ONLY Engulfing Candle (Bulish/Bearish) Key Reversals Analysis Scan by By D Nayab September 2009*/ Buy=O<Ref(C,-1) AND L<Ref(L,-1) AND C>Ref(H,-1) AND Volume > Ref( MA( Volume, 15 ), -50 ); Sell=O>Ref(C,-1) AND H>Ref(H,-1) AND C<Ref(L,-1)AND Volume < Ref( MA( Volume, 15 ), -50 );
3 comments
Leave Comment
Please login here to leave a comment.
Back
add these 2 lines at the end of the program to show the engulfing position
PlotShapes( shapeHollowStar * Buy, colorWhite);
PlotShapes( shapeHollowStar * Sell, colorYellow);
THANKS HOTARO3
Good One