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

Weekly Balance Step for Amibroker (AFL)

Rating:
3 / 5 (Votes 5)
Tags:
amibroker

This is a simple Moving Average of the last 5 Balance Points (MA/3),5) of the weekly period bar plotted in step formation on the daily chart. This is projected 1 period forward (one day). we can use the Weekly steps to define the tradable trend on daily chart.
Thanks for the author Robert Krausz, simple and great.

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez over 9 years ago
Advanced Elliott Waves
Submitted by MarcosEn over 12 years ago
3_6Day GuaiLiLv
Submitted by motorfly over 12 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago
Horizontal Live Priceline Tool
Submitted by northstar over 12 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("BS Weekly");
/* switch to weekly time frame */ 
TimeFrameSet( inWeekly ); 
MP = ( H + L + C) / 3; //CALCULATING MEDIAN PRICE
BS = MA( MP, 5 ); // CALCULATING THE BALANCE STEP
_UP = BS > Ref(BS,-1);
_BScolor = IIf( _UP, ParamColor("Up Color", colorBrightGreen), ParamColor("Down Color", colorRed )); /* choose color */
TimeFrameRestore(); 

/* expand calculated weekly BALANCE STEP to display on DAILY charts */ 

BalanceStep = TimeFrameExpand( BS, inWeekly );
UP = TimeFrameExpand( _UP, inWeekly );
BScolor = TimeFrameExpand( _BScolor, inWeekly );


Plot(BalanceStep,_DEFAULT_NAME(),BScolor,styleLine | styleThick,0,0,1);
_SECTION_END();

4 comments

1. Divyesh

Nice Level………..

Can i use this level in my study….?

2. adel_eltobgy

The idea behind the steps, just to trade with the steps direction. Generally, if the price is above the steps is bullish other ways is bearish.

3. prasadmuni

Good indicator and will be definitely useful to trade in the direction of the trend.Simple and lethal.Thanks for shareing.
Prasad Muni

4. morgen

Simple is beutiful!
Thank You!

Leave Comment

Please login here to leave a comment.

Back