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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
AKKI BB SCan for Amibroker (AFL)
Rating:
3 / 5 (Votes 4)
Tags:
trading system, amibroker, exploration
This formula can be used for Bollinger scan
Similar Indicators / Formulas
OPTIMIZED ICHIMOKU
Submitted
by ritesh.bafna88 about 12 years ago
Reaction Trend System
Submitted
by ajayjain90 over 14 years ago
Behgozin Strength Finder
Submitted
by hotaro3 about 12 years ago
KPL with RSI
Submitted
by pdkg_gal over 14 years ago
Intraday Trend Break System
Submitted
by nishantndk over 14 years ago
ema crossovers
Submitted
by rushee.g1100 over 14 years ago
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("BB Daily Scan Tr-1, Rv-3, Bo-2"); x = MACD(); y = Signal(); hist = x - y; z = hist < Ref(hist, -1); s= hist > Ref(hist, -1); earlyBuy = (Sum(z, 4) == 3)AND (hist > Ref(hist, -1)) ; earlySell = (Sum(s, 4) == 3)AND (hist < Ref(hist, -1)); Buy = (Cross(x,y) OR earlyBuy) AND (EMA(Close,20)>EMA(Close,50)) ; Sell = (Cross(y,x) OR earlySell ) AND (EMA(Close,20)< EMA(Close,50)); color = IIf(hist > Ref(hist, -1), colorLime, colorOrange); Plot(hist, "", color, styleHistogram|styleThick ); PlotShapes(shapeUpArrow * Buy, colorDarkGreen, 0, z); PlotShapes(shapeUpArrow * earlyBuy , colorLime, 0, z); PlotShapes(shapeDownArrow * Sell, colorRed, 0, s); PlotShapes(shapeDownArrow * earlySell , colorOrange, 0, s); Sell = BBandTop(Close,15,2)< Close; Buy = BBandBot(Close,15,2)> Close; Filter= Buy OR Sell ; _SECTION_END();
1 comments
Leave Comment
Please login here to leave a comment.
Back
very good