Balance of Power

v10.3
Balance of Power

The Balance of Power indicator measures the market strength of buyers against sellers by assessing the ability of each side to drive prices to an extreme level. The calculation is: Balance of Power = (Close price – Open price) / (High price – Low price) The resulting value can be smoothed by a moving average.

Traders may use this indicator to help:

  • Identify the direction of a trend.
  • Find divergences between the price and the BoP in order to identify a potential trend reversal or trend continuation setup.
  • Take advantage of overbought and oversold conditions.

(description found on the web)

Code converted from Pinescript (tradingview) version by a request in the english indicators forum section.

 

Share this

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.

ProRealTime ITF files and other attachments : How to import ITF files into ProRealTime platform?

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

  1. bolsatrilera • 10/11/2017 #

    Hi Nicolas, I have this version of the True Balance Power ,created by eykpunter on Tradingview :

  2. bolsatrilera • 10/11/2017 #

    and the code :
    REM TRUE BALANCE OF POWER
    // código original de eykpunter para la plataforma Tradingview
    //reforma del script de LazyBear
    //@version=3
    //adaptado para Prorealtime por bolsatrilera

    per=30 //title=”periods for Emoline”, type=integer, step=1, minval=4)
    hihi = max(high, close[1])
    lolo = min(low, close[1])
    opop = close[1]
    bop = 100*(close-opop)/(hihi-lolo) //part of range
    lin= 1.5*LinearRegression[per](bop)
    if lin 0 then
    r=154
    g=205
    b=50
    else
    r=255
    g=165
    b=0
    endif

    return bop coloured (r,g,b)style (histogram)as “True Bop”,lin style(line,2)as “Emoline”, 0 as “0”

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
Nicolas
9 years ago
GraHal Hi Nicolas Britains .itf file didn't work for me ... I had to change h to hh at line 13 and...
Nicolas Thank you GraHal for pointing this error, i have corrected the code in the file. The code in...
Nicolas
9 years ago
Nicolas
9 years ago
U Trend Sensor
U Trend Sensor
4
Indicators
Nicolas Hi Stef, thanks again for contributing to my near perfect english :)
Salocin Hi Nicolas, seems to be a pretty cool one as an indicator. can you define "plotsingal". Syst...
Nicolas Download the itf file attached to the post, there's everything needed in it. Just import thi...
Nicolas
9 years ago
cosmicsurfer I actually live up the road from Daryl Guppy. On the first day of my training i walked aroun...
Pleidian Hi, I'm trying to add the guppy indicator to my charts but i keep getting a box that's says ...
Nicolas Wrong copy/paste? Always a better idea to download the ITF file and import it into the platf...
Yantra "i believe this indicator could help any trend followers in trading decision. " I'm wonderin...
Nicolas
10 years ago
Tradesun Salve, ho provato ad inserire l'indicatore nella piattaforma ma mi chiede di definire la var...
maximus78 Tradesun, se scarichi il file ITF allegato e lo importi nella piattaforma ci sono già le var...

Top