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

Bottom Trader for Amibroker (AFL)

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

If a trend is your friend, then you are thrice as lucky to have three
buddies in Bollinger Bands. The bands and their MA are not only great
trading tools, but superb trend indicators as well. Here, I have for you a
Bollinger Bottom Band Exploration (needless to say you can customize it for
O, H, L or C). I have set it to filter stocks that have crossed the bottom
band at L. If you are conservative with you money then this exploration is
ideal for you. Explore and ENTER the trade. All you need is a good eye and
I assure you, you would seldom lose money on a trade.

Author: Mubashar Virk

Similar Indicators / Formulas

General Market Exploration by XeL
Submitted by xel over 11 years ago
DIX50,20,10
Submitted by morgen over 13 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji about 14 years ago
4-Day-Range Switch
Submitted by santho_sd over 13 years ago
Volume Spike Exploration
Submitted by ngocleasing over 13 years ago

Indicator / Formula

Copy & Paste Friendly
P = ParamField("Price field",-1);
Periods = Param("Periods", 20, 2, 100, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );


Filter = L <  BBandBot( P, Periods, Width );

P  =  ((H + L + C) / 3);
R1  =  ((2 * P) - L);
S1  =  ((2 * P)  - H);
R2  =  ((P - S1) + R1);
S2  =  (P - (R1 - S1));

AddTextColumn( FullName(), "Name");
AddColumn( Close, "Close" );
AddColumn (RSI(), "RSI",1.2);
AddColumn( V, "Volume",1 );
AddColumn( r2, "R 2", 1.2);
AddColumn( r1, "R 1", 1.2);
AddColumn( P, "Pivot", 1.2);
AddColumn( S1, "S 1", 1.2);
AddColumn( S2, "S 2", 1.2);

0 comments

Leave Comment

Please login here to leave a comment.

Back