Forex Entry Point Indicator (no repaint)

Forex Entry Point Indicator (no repaint)

This indicator is  a conversion for ProRealTime of the “Forex Entry Points Indicator” for mt4.

The original version of this indicator repaints, which means that as new quotes appear, the indicator modifies the recent signals it gave. As a result, the signals on historical data are much more relevant that the signals you get in real-time.

This version for ProRealTime is improved as it does not repaint.

This is the code for version v10.2 and below. You need to add the indicator below the price and set it in histogram.
V10.2 code :

This is the code for version v10.3 and above. You need to add the indicator directly to the price chart.
V10.3 code :

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. algotrader • 06/09/2016 #

    HiI have done some little fine tuning and I’m running this as live trading on the SA40 index (South Africa)Getting positive results!! ;)However, I don’t use a stop loss or anything a like.Just an exit/take profit, with “set target pProfit 22”Gain: 1188, Win: 22 Loss: 2 My question is, how come the system closing a trade if there is no code for it?What/Why its happening?—– Code —–
    DEFPARAM CumulateOrders = false //True
    IF time >= 072900 and time <= 113000 THEN

    Once periodK = 21
    Once periodD = 12
    Once smoothing = 14
    Once highZone = 76
    Once lowZone = 24

    stochK = Stochastic[periodK,smoothing](Close)
    stochD = SmoothedStochastic[periodD,smoothing](Close)

    if stochK<stochD and stochK[1]>stochD[1] and stochK<lowZone and stochK[1]<lowZone then
    buy 2 contract at market
    endif

    if stochK>stochD and stochK[1]<stochD[1] and stochK>highZone and stochK[1]>highZone then
    sellshort 2 contract at market
    Endif

    set target pprofit 22

    ENDIF

    Thank you,A.

    • Nicolas • 06/09/2016 #

      Because new short positions initiated by your conditions close current long ones and vice-versa.

  2. algotrader • 06/09/2016 #

    I mean, the system is closing a trade at a loss where there is no code for it?

  3. algotrader • 06/09/2016 #

    Hello NicollasI see.. that means I need to use a “Force Open” codeAnd/Or change the “
    DEFPARAM CumulateOrders = false to True..Right?
     

    • Nicolas • 06/09/2016 #

      No, cumulateorders is only there to allow cumulating orders of the same kind (buy or sell). In ProOrder, it’s not possible to have buy and sell orders at the same time, you’ll need to make 2 different strategies if you want to allow this.

  4. algotrader • 06/09/2016 #

    Thank you.

  5. gordontan • 06/09/2016 #

    HI ADMIN, can you do me a favor ??i hope that you can post the ex4 or mq4 file version of this non repaint indicator. because i dont know how to attach your codes into my mt4..can you help ,please…i am interested in this indicator as it is NON REPAINT INDICATOR AS YOU MENTIONED.. PLEASE HELP..

  6. sagittario75 • 06/09/2016 #

    Good morning,
    You might have a change to this code so that you change the time settings directly from the program screen?
    thank you

  7. sandfred • 06/09/2016 #

    can this indicator be both converted into .mq4. i couldnt use it as .itf

    • Nicolas • 06/09/2016 #

      For any customized code, you can ask the programming services: https://www.prorealcode.com/trading-programming-services/

avatar
Register or

Likes

avatar
Related users ' posts
ggolfet Hi Actarus, what's the name of the histogram indicator below Apple's chart?
Actaru5 Flag ShowState in setting and show histogram
NicolaSilvagni hi, thank you for creating this indicator. i can't figure out how to get the three graphs b...
larouedegann It doesn't work
ggolfet it seems it's not working on prorealtime 11. I changed MACDSignal to MACDSign in order to av...
juanj Please note that the indicator is meant for PRT 10.3
khashayar Hi Can you please upload the TMA channel code? Thank you
oyinloyea Is it possible to have the open and close price in Box format for the different sessions. Th...
Luciole I aslo got this error message with EU version : "A positive integer parameter is expected wi...
Suzu Yuk So Does anyone knows how to fix the error "“A positive integer parameter is expected with HI...
Thomas I haven't solved it yet. I suspect it has to do with the data cache. The problem has never o...
Thomas
5 years ago
luxrun sorry, add prt code add doesn't work
robertogozzi Don't worry about PRT code, I can't make it work either! Great for pointing that out, it's ...
Khaled @Luxrun, good morning, you mentionned "y = exponentialaverage (x)", isn't the period of the ...
luxrun One question, Roberto: the two AvgT are variable, could you explain to me what they regulate...
robertogozzi AvgT stands for Average Type, it's a parameter for the AVERAGE keyword (https://www.prorealc...
oliverkeim Hi, also here not working. Only white lines.
killerplatuze Dont work anymore with the current version?
KryptoKat tolle Arbeit, professionell
Bard Hi @Vonasi, this is an excellent tool! I noticed you times by 180 and was wondering why? W...
Bard I have no idea what is wrong with the posting on this website. I have problems editing posts...
Bard And now my first post displays okay? It literally had copies of my orig post all added toget...
woktrade Superbe !
Vonasi An updated version with a bug fix can be found here: https://www.prorealcode.com/topic/dis...
snucke hey Vonasi is it possible you can help me get this indicator to show how much a market mo...
kbrooks323 Hello would someone be willing to release a scan code for this? that would be helpful as I s...
Nicolas You can do easily this screener by using the assisted creation tool. It would take you about...
kbrooks323 I just figured it out thanks!
Screw27 Hi man, I installed the indicator and i don't know why but my graph it is so big
HelixKing sounds interesting I'll take a look
Zigo
5 years ago
denmar Neat. Thanks.
Zigo Line 39 TS has to be KS Line 41 TS has to be KS
Nicolas Ask on an Excel website?!
JJMR HOLA NICOLAS, TENGO LA ULTIMA VERSION ACTUALIZADA DEL INDICADOR TTM SQUEEZE PRO EN LA VERSIO...
imokdesign @nicolas ,if in want to "call" this indicator, which values i have to write down?

Top