Trend Force

Trend Force

The field “Trend Force” indicates the strength of the current bullish/bearish trend. The more strong the trend is, the more significant the reversal will be.

This indicator has been developed with the help of ProRealTime to regroup in the same indicator both bullish and bearish trends.

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. Petrus • 10/12/2015 #

    Hi Lolo.
     
    If you put on the graph only the difference between both values, the result is much clearer:
    REM Determines strength of bullish trend
    BullTrend = (CLOSE - LOWEST[20](LOW)) / AVERAGETRUERANGE[10]

    REM Determines strength of bearish trend
    BearTrend = (HIGHEST[20](HIGH) - CLOSE) / AVERAGETRUERANGE[10]

    dif=BullTrend-BearTrend

    RETURN dif AS \"Difference\", 0 AS \"Zero\"

     

  2. swapping • 10/12/2015 #

    Trend Force with Background Color

  3. swapping • 10/12/2015 #

    // — property setting
    //Alpha = 40 // Transparency backgroundcolor
    // — end

    // Determines strength of bullish trend
    BullTrend = (close – lowest[20](low)) / averagetruerange[10]
    // Determines strength of bearish trend
    BearTrend = (highest[20](high) – close) / averagetruerange[10]

    // Add Background Color in green if BullTrend Market or red if BearTrend Market
    if BullTrend > BearTrend then
    BackgroundColor(0,135,0,alpha) // green color
    else
    BackgroundColor(157,0,0,alpha) // red color
    endif

    return BullTrend coloured by BullTrend style(histogram,1) as “▲ Bull”, -BearTrend coloured by BearTrend style(histogram,1) as “▼ Bear”

avatar
Register or

Likes

avatar avatar avatar avatar
Related users ' posts
ThibauldR_Weekenday
14 hours ago
HULL MA + SIGNALS
HULL MA + SIGNALS
0
Indicators
Marc Boliart Hi! i do not know why _v.1.1"] was on 1st line, remember to remove it!
Iván
2 weeks ago
Iván Change line 23 for this IF BarIndex <= 2 THEN
roccafragius Thank you so much!!!!!! :):)
roccafragius Hi Ivan, unfortunatelly I still hace some problem using timeframe 3 minutes in 1 minutes, th...
Iván
3 weeks ago
Violet Ivan, it looks as if something is really wrong with this indicator. When I import and apply ...
Iván Hello! For proper visualization, it is recommended to have more than 1k bars loaded.
Violet Thanks Ivan. Though it does not remove the 'tapering at the beginning' phenomenon, it does m...
2 Fast Two things stand out to me: I see a lot of horizontal blocks in the chart instead of vertica...
lkiklkik thanks for the hard work and sharing
adeelq79 Great work Ivan. Thanks
Quino Another really interesting indicator. It works very well on periods below 25. Just a few cos...
MaoRai54 hello, it seems to be very good, but I'm doing intraday and I'm getting very different forec...
Iván Hi! I use this indicator in daily basis. In intraday timeframes, volume changes a lot depend...
sam00075 Accuracy is on point.
Mubin1308 Bonjour à tous, J'ai importé le fichier mais ça ne marche pas, rien qui s'affiche. Pourriez...
hdb1 Thank you so much Ivan..Been using this on 30min timeframe with excellent results. Now my ma...
Iván
3 months ago

Top