WebCab Technical Analysis
(J2EE Edition)

com.webcab.ejb.finance.trading.indicators
Interface MarketStrength

All Superinterfaces:
EJBObject, Remote

public interface MarketStrength
extends EJBObject

Within this class we collect a number of indicates which measure the relative strength or weakness in the market.


Method Summary
 double balanceOfPower(double open, double close, double high, double low)
          This method implements the Balance of Power (BOP) indicator, created by Igor Livshin; which captures the struggle between the Bulls and Bears throughout a trading day.
 
Methods inherited from interface javax.ejb.EJBObject
getEJBHome, getHandle, getPrimaryKey, isIdentical, remove
 

Method Detail

balanceOfPower

public double balanceOfPower(double open,
                             double close,
                             double high,
                             double low)
                      throws RemoteException
This method implements the Balance of Power (BOP) indicator, created by Igor Livshin; which captures the struggle between the Bulls and Bears throughout a trading day.

Interpretation
When the BOP indicator is towards the high if its range it will signifies that the Bulls are in control, conversely when the indicator is towards the lows of its range it signifies that the bear are in control. If the indicator move from a high positive range to a lower positive range it signifies that the buying pressure is decreasing. Conversely, if the indicator move from a low negative range to a higher negative range it signifies that the selling pressure is decreasing.

Evaluation
The BOP indicator is evaluated by the following formulae:

BOP = (Close - Open)/(High - Low)

where close is the days closing price, open is the days opening price, high is the highest traded price during the day and low is the lowest traded price during the day.

RemoteException

WebCab Technical Analysis
(J2EE Edition)