PRT Bands – the ProRealTime trend following indicator

Viewing 6 posts - 31 through 36 (of 36 total)
  • Author
    Posts
  • #171750 quote
    guscher1guscher1
    Participant
    New

    Hi I would like to use this for quick trades or scalping the indices, could this work for

    these? Thanks.

    #171757 quote
    NicolasNicolas
    Keymaster
    Legend

    Yes, but I would recommend this other (not free) indicator from the same author: https://market.prorealcode.com/product/extratrend-an-indicator-for-technical-traders-and-chartists/

    guscher1 thanked this post
    #191715 quote
    cashbtctradecashbtctrade
    Participant
    New

    Hi nicolas can you  convert a prt bands in code proscreener, thanks

    Tony

    #191716 quote
    NicolasNicolas
    Keymaster
    Legend

    There are a lot of screeners for PRT Bands available in the french topic there: PRT Bands – l’indicateur de trend following de ProRealTime

    jamesfx thanked this post
    #218653 quote
    kvacksa87kvacksa87
    Participant
    Junior

    is there any automatic strategy that buys short on the top 4 hour graph and sells in the middle? and buy long on the lowest band and sell on the middle? which can be run on the best timeframe

    #218665 quote
    NicolasNicolas
    Keymaster
    Legend

    The following strategy SELLSHORT at top of the band when trend is read and BUY at bottom of the band when trend is green:

    up = PRTBandsUp
    dn = PRTBandsDown
     
    if close crosses over up and trend <= 0 then
    trend = 1
    elsif close crosses under dn and trend >= 0 then
    trend = -1
    endif
    
    if onmarket then 
    set target price (up+dn)/2
    endif 
    
    if trend=1 and not longonmarket and close>dn then 
    buy 1 contract at dn limit 
    endif 
    
    if trend=-1 and not shortonmarket and close<up then
    sellshort 1 contract at up limit
    endif
    
Viewing 6 posts - 31 through 36 (of 36 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

PRT Bands – the ProRealTime trend following indicator


General Trading: Market Analysis & Manual Trading

New Reply
Author
author-avatar
Nicolas @nicolas Keymaster
Summary

This topic contains 35 replies,
has 15 voices, and was last updated by NicolasNicolas
3 years, 1 month ago.

Topic Details
Forum: General Trading: Market Analysis & Manual Trading
Language: English
Started: 08/17/2020
Status: Active
Attachments: 16 files
ProRealCode ProRealCode
Loading...