Trend Follower

Trend Follower

It analyses moving averages in a channel and their momentum according to the channel width.

On each bar it creates a channel by highest/lowest point of a MA. highest point is upper point and lowest point is lower point of the MA channel.

It gets highest and lowest point of last 300 bars, (say Price Channel )
If the width of MA channel is greater than certain rate of price channel then it decides there is trend.

After it decided there is trend, it calculates the rate between channel and MA. Bigger result means stronger trend.

According to rate of MA channel and the price channel , bar color becomes lighter/darker. so when you look at the bar color you can see the trend strength.

The darker the colour, the weeker the trend is.

Upon a request from user denmar (https://www.prorealcode.com/topic/help-converting-trend-follower-indicator-from-trading-view/) I converted this indicator written by LonesomeTheBlue.

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. denmar • 09/27/2021 #

    Many thanks. Highly appreciated.

  2. Kanamax • 09/27/2021 #

    Hi Roberto,
    Thanks for this indicator which is very helpful.
    I tried to use this indicator into a very simple strategy based on g > 0 –> BUY and r SELL.
    The strategy runs however entry in call and put position don’t follow the indicator. Unfortunately I can’t put sceenshot to show
    Do you have any idea why?
    FYI I run with PRTV11

    Thank you

    I share only the end of the code + position entries:

    Trend = x * diff / MyChannel
    IF Trend > 0 THEN
    r = 0
    g = 255
    b = 0
    t = 255
    IF Trend Trend[1] THEN
    r = 139
    g = 0
    b = 0
    t = 255
    ENDIF
    ENDIF

    // Conditions pour ouvrir une position acheteuse
    if not onmarket and g = 255 then
    BUY 1 CONTRACTS AT MARKET
    ENDIF

    // Conditions pour fermer une position acheteuse
    if longonmarket and r = 255 then
    SELL AT MARKET
    ENDIF

    // Conditions pour ouvrir une position en vente à découvert
    if not onmarket and r = 255 then
    SELLSHORT 1 CONTRACTS AT MARKET
    ENDIF

    // Conditions pour fermer une position en vente à découvert
    if shortonmarket and g = 255 then
    EXITSHORT AT MARKET
    ENDIF

  3. robertogozzi • 09/27/2021 #

    Don’t use colours as a signal,
    use TREND instead.
    If it’s > 0 it’s a Long signal, otherwise it’s a Short signal.

  4. Kanamax • 09/27/2021 #

    Hi Roberto,
    I did previously but same result.

  5. Kanamax • 09/27/2021 #

    Can you try on your side to check if that works properly for you?

  6. robertogozzi • 09/27/2021 #

    Post the complete code you used.

  7. Kanamax • 09/27/2021 #

    Please find herein after

    / Trend Follower

    //
    MAtype = 1 //1=Ema
    TrendP = 20 //20 periods to check trend
    MAperiods = 20 //20 periods for MA
    TrendRate = 1 //1% trend channel rate
    UseLR = 1 //1=use Linear Regression, 0=do not use LR
    LRperiods = 5 //5 periods for Linear Regression
    RangeP = 1 //300 period for the range
    MAtype = max(0,min(8,MAtype))
    TrendP = max(1,min(999,TrendP))
    MAperiods = max(1,min(999,MAperiods))
    TrendRate = max(0.00001,min(99,TrendRate))
    RangeP = max(1,min(999,RangeP))
    //
    RateMult = TrendRate / 100
    PriceRange= highest[RangeP](high) – lowest[RangeP](low)
    MyChannel = PriceRange * RateMult
    MyMA = average[MAperiods,MAtype](close)
    IF UseLR THEN
    MyMA = LinearRegression[LRperiods](close)
    ENDIF
    hh = highest[TrendP](MyMA)
    ll = lowest[TrendP](MyMA)
    diff = abs(hh – ll)
    x = 0
    IF diff > MyChannel THEN
    IF MyMA > (ll + MyChannel) THEN
    x = 1
    ELSE
    IF MyMA 0 THEN
    r = 0
    g = 255
    b = 0
    t = 255
    IF Trend Trend[1] THEN
    r = 139
    g = 0
    b = 0
    t = 255
    ENDIF
    ENDIF

    // Conditions pour ouvrir une position acheteuse
    if not onmarket and trend > 0 then
    BUY 1 CONTRACTS AT MARKET
    endif

    // Conditions pour fermer une position acheteuse
    if longonmarket and trend < 0 then
    SELL AT MARKET
    ENDIF

    // Conditions pour ouvrir une position en vente à découvert
    if not onmarket and trend 0 then
    EXITSHORT AT MARKET
    ENDIF

  8. Kanamax • 09/27/2021 #

    It seems I had some difficulties to copy paste the complete code correctly.
    The overall code is just your indicator + the following conditions at the end:
    Read trend > 0 instead of g = 255 and trend < 0 instead of r = 255

    // Conditions pour ouvrir une position acheteuse
    if not onmarket and g = 255 then
    BUY 1 CONTRACTS AT MARKET
    ENDIF

    // Conditions pour fermer une position acheteuse
    if longonmarket and r = 255 then
    SELL AT MARKET
    ENDIF

    // Conditions pour ouvrir une position en vente à découvert
    if not onmarket and r = 255 then
    SELLSHORT 1 CONTRACTS AT MARKET
    ENDIF

    // Conditions pour fermer une position en vente à découvert
    if shortonmarket and g = 255 then
    EXITSHORT AT MARKET
    ENDIF

  9. robertogozzi • 09/27/2021 #

    I can’t understand when you want to enter/exit.
    Please start a new topic in ProOrder support and attach the ITF file of your strategy + screenshot (showing also the instrument and timeframe used).

  10. Kanamax • 09/27/2021 #

    Hi Roberto, sorry for my confusing previous posts (forget them). My request is very simple, I just want to enter/exit by using TREND signal from your indicator.
    I want entry long when trend > 0 then exit when trend 0 and exit long is not when trend < 0 (same at the opposite for short signal).
    It's why I wondered if you can test by your own and then share with me the last lines of your ProOrder code?
    Thanks for you help.

    // Trend Follower
    //
    // https://it.tradingview.com/script/o0ZOSVHj-Trend-Follower/
    //
    MAtype = 1 //1=Ema
    TrendP = 20 //20 periods to check trend
    MAperiods = 20 //20 periods for MA
    TrendRate = 1 //1% trend channel rate
    UseLR = 1 //1=use Linear Regression, 0=do not use LR
    LRperiods = 5 //5 periods for Linear Regression
    RangeP = 1 //300 period for the range
    MAtype = max(0,min(8,MAtype))
    TrendP = max(1,min(999,TrendP))
    MAperiods = max(1,min(999,MAperiods))
    TrendRate = max(0.00001,min(99,TrendRate))
    RangeP = max(1,min(999,RangeP))
    //
    RateMult = TrendRate / 100
    PriceRange= highest[RangeP](high) – lowest[RangeP](low)
    MyChannel = PriceRange * RateMult
    MyMA = average[MAperiods,MAtype](close)
    IF UseLR THEN
    MyMA = LinearRegression[LRperiods](close)
    ENDIF
    hh = highest[TrendP](MyMA)
    ll = lowest[TrendP](MyMA)
    diff = abs(hh – ll)
    x = 0
    IF diff > MyChannel THEN
    IF MyMA > (ll + MyChannel) THEN
    x = 1
    ELSE
    IF MyMA < (hh – MyChannel) THEN
    x = -1
    ENDIF
    ENDIF
    ENDIF
    Trend = x * diff / MyChannel
    IF Trend > 0 THEN
    r = 0
    g = 255
    b = 0
    t = 255
    IF Trend < Trend[1] THEN
    g = 128
    t = 180
    ENDIF
    ELSE
    r = 255
    g = 0
    b = 0
    t = 255
    IF Trend > Trend[1] THEN
    r = 139
    g = 0
    b = 0
    t = 255
    ENDIF
    ENDIF

    // Long Entry
    if not onmarket and trend > 0 then
    BUY 1 CONTRACTS AT MARKET
    ENDIF

    // Long Exit
    if longonmarket and trend < 0 then
    SELL AT MARKET
    ENDIF

    // Short Entry
    if not onmarket and trend < 0 then
    SELLSHORT 1 CONTRACTS AT MARKET
    endif

    // Short Exit
    if shortonmarket and trend > 0 then
    EXITSHORT AT MARKET
    ENDIF

  11. robertogozzi • 09/27/2021 #

    Please start a new topic in ProOrder support.

  12. Kanamax • 09/27/2021 #

    OK

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
Nicolas
9 years ago
ALMA MACD
ALMA MACD
7
Indicators
Arnaud HALVICK Great indicator, thank you!
JMat45 Hi Nicolas, just reviewing this indicator and noticed that you have double assigned the vari...
Nicolas That would not make any difference because the code is read from top to bottom.
MikeGC I don't know if you have used the variables a and b to optimise the parameters for the Super...
gianpiero75 I have not optimized, I multiplied the parameters for 6 (5,8), to use them on the 4  hoursTF...
bertrandpinoy bonjour Mike j utilise TrendChaser V2.0 et quand il prend position cela ne programme pas le ...
eisi If i switch between different Markets, the Backgroundcolour will appear where it should not...
datageek How can I get alerts on colour change?
NAMBO40 Hello, I would like to add a 25 period SMA moving average. It's possible?
Fabio Anthony Terrenzio this strategy works only in a well defined trend
brosly Good afternoon I am trying to get the complete code of lex strategy made by adolfo since I s...
dreif123 hi Adolfo, is Alex Auto Trading Botindex working on DAX as well ? if so , can you post the...
Doctrading I forgot to write at the beginning :  a = 50 b = 50 These are intermediate levels Sorry
DerPat Thank you. This one could be an aid in my current research on stochastics.
Pelayo it is possible that in line 12 we should put seuilinf=-b, thaks for all
Doctrading Hello, Someone asked me something (his results seemed to be different) on my email, but it ...
Glen Marquis Not your best..So what is your best strategy? :)
GraHal Hi Nicolas I like this and would like to understand it fully so please forgive the (maybe) d...
Nicolas Hi GraHal, the Factor parameter is only a multiplier of the ATR that is added or subtracted ...
GraHal Nicolas, thank you for your useful and informative response. Yes I optimise using ProBackte...
Denis Hello, Congratulations and thank you for this work. I do not understand one thing, however...
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
10 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
10 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