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

Balance of Power Indicator for Amibroker (AFL)

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

Balance of Power (BOP) is an oscillator that measures the strength of buying and selling pressure. Introduced by Igor Levshin in the August 2001 issue of Technical Analysis of Stocks & Commodities magazine, this indicator compares the power of buyers to push prices to higher extremes with the power of sellers to move prices to lower extremes. When the indicator is in positive territory, the bulls are in charge; and sellers dominate when the indicator is negative. A reading near the zero line indicates a balance between the two and can mean a trend reversal.

https://school.stockcharts.com/doku.php?id=technical_indicators:balance_of_power

Screenshots

Indicator / Formula

Copy & Paste Friendly
BOP = (Close - Open) / (High - Low);
parameter = Param("BOP MA",14,2,30);
BOP = MA(bop,parameter);

mabop = MA(bop,4);
colorbop = IIf(bop > 0, colorGreen, colorred);

Plot( BOP, "", colorbop, styleHistogram | styleThick | styleNoLabel, maskHistogram );
Plot(mabop,"MA BOP", IIf(bop>mabop,colorGold,colorBlue), stylethick);

0 comments

Leave Comment

Please login here to leave a comment.

Back