StockFetcher Forums · Filter Exchange · BOP Balance Of Power<< >>Post Follow-up
lockwhiz
206 posts
msg #55319
Ignore lockwhiz
modified
9/27/2007 10:29:40 PM

By Igor Livshin that can be found on p. 18 of the August 2001 issue of Stocks & Commodities Magazine.

According to Livshin, "The balance of power (BOP) indicator measures the strength of the
bulls vs. bears by assessing the ability of each to push price to an extreme level." Although the
article goes on to describe a somewhat involved calculation of the BOP, it breaks down to nothing more
than...

(CL - OP)/(HI - LO)

This resulting raw BOP value can then be optionally smoothed using any moving average type, and can be
drawn as a line or histogram.

The BOP oscillates between extremes of -1 and +1.
Livshin goes on to make the following statements...
+For Daily charts, a 14 period moving aveage is recommened, though the number of periods varies
depending on the nature of the market and the time frame.

+One of the most important properties of BOP is the level at which it clusters its tops and bottoms.
During bull markets, its tops often reach the upper limit and never reach the bottom level.
During bear markets, the picture is reversed.

+BOP supports price divergence, trends, and overbought-oversold levels.

+A change in the BOP trend serves as a warning signal and should be confirmed by a change in the
price direction.

Fetcher[
set{numer, close - open}
set{denom, high - low}
set{BOP, numer / denom}
set{avgBOP, cma(BOP, 10)}
BOP equals .2
AND add column BOP
AND add column avgBOP
]



....or

Fetcher[
set{numer, close - open}
set{denom, high - low}
set{BOP, numer / denom}
set{avgBOP, cma(BOP, 10)}
BOP below .2
AND add column BOP
AND add column avgBOP
]



This was taken from:

http://yepher.com/~yepher/stockfetcher/command-cmddoc.html#ind()



SAFeTRADE
630 posts
msg #55326
Ignore SAFeTRADE
9/28/2007 1:33:53 AM

This is my effort with Balance of Power.

Fetcher[
/* BALANCE OF POWER */

set{bullopen, high - open}
set{bearopen, open - low}
set{bullclose, close - low}
set{bearclose, high - close}
set{bulloc, close - open}
set{bearoc, open - close}

close > 15
volume > 50000
ma(50) > ma(300)

/* */
/* */

set{bureward, bullopen + bullclose}
set{bullreward, bureward / 2}
set{bereward, bearopen + bearclose}
set{bearreward, bereward / 2}

set{bop, bullreward - bearreward}

/* */
/* */

set{slow, CEMA(bop,26) - CEMA(bop,13)}
set{fast, cema(bop,9)}

draw fast on plot slow
DRAW WEEKLY RSI(2) ON PLOT WEEKLY RSI(5)
DRAW WEEKLY RSI(14) ON PLOT WEEKLY RSI(5)


close reached a new 55 day high in the last 1 day
]



StockFetcher Forums · Filter Exchange · BOP Balance Of Power<< >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.