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 by Igor Livshin for Metastock
kaiji
about 14 years ago
Metastock

Rating:
5 / 5 (Votes 1)
Tags:

The balance of power (BOP) indicator, presented by Igor Livshin can be easily recreated in MetaStock 6.52 or higher. To create the BOP in MetaStock, select the “Indicator Builder” from the Tools menu. Then click “New” and enter the following formula:

Screenshots

Indicator / Formula

Copy & Paste Friendly
THL:=If(H-L=0,.00001,H-L);
{Reward Based on the Open}

BuRBoO:=(H-O)/(THL);
BeRBoO:=(O-L)/(THL);
{Reward Based on the Close}

BuRBoC:=(C-L)/(THL);
BeRBoC:=(H-C)/(THL);
{Reward Based on the Open-Close}

BuRBoOC:=If(C>O,(C-O)/(THL),0);
BeRBoOC:=If(C>O,0,(O-C)/(THL));
BOP:=(BuRBoO+BuRBoC+BuRBoOC)/3 - (BeRBoO+BeRBoC+BeRBoOC)/3;
BOP

0 comments

Leave Comment

Please login here to leave a comment.

Back