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
atlante hi nicolas this indicator have 2 wrong borderline and islalastbarupdate. thank you can you h...
Nicolas That'"s because you are not using PRT v11? Just remove lines 59 to 62
Kanamax Hi Roberto, sorry for my confusing previous posts (forget them). My request is very simple,...
robertogozzi Please start a new topic in ProOrder support.
robertogozzi An updated version can be found here https://www.prorealcode.com/topic/conversion-of-pine-sc...
jissey Bonjour Robertogozzi, cet indicateur est interessant mais serait-il possible de marquer la ...
robertogozzi Sure, but you should start a new topic on the Probuilder support forum. Thank you :)
robertogozzi There you go: myMagicTrend = CALL “Magic Trend custom”[20, 14, 1, 5] alpha = 105 b = 0...
johann8 exactly :) Thank you all for the help!
max_92 Ciao Roberto, ho scaricato l'indicatore e come ti avevano già scritto sopra anch'io vedo la ...
Maxime Baudin Excellent timing indicator to confirm or deny entries in the market, congratulations Roberto...
aldtrading Thanks for your work. Would you mind explaining briefly how the volatility threshold works, ...
robertogozzi As the author said "I also introduced a volatility threshold that excludes minimal penetrati...
skfomx I have a thread in pro screener support where I describe some problems with the creation of ...
cdc.andersson Hej! Jag försöker lära mig att koda PRT. Jag vill testa en strategi med RSI-värde, ATR-värde...
Swingforfortune Du kan väl jämföra om open > close (röd) eller open < close (grön)
jonpt88 Thank you so much :). In the beginning I thought I cannot see the 10x return haha it is much...
jonpt88 Hello everyone - can anyone be so kind to add to the 10R modification the 0.50R (before the ...
JC_Bywan Hi, with added 0.5R, happy new year: defparam DRAWONLASTBARONLY=true LeR=myentry-mys...
ChemaGeek Bonjour Nicolas, j'ai récemment découvert cet indicateur (Regularized Momentum 2017) et je l...
YvesRobert Bonjour, nouveau sur PRT (qq jours), j'essaie un peu de voir quel type d'indicateur me convi...
Lighthouse
4 years ago
Real Motion Indicator
Real Motion Indicator
4
Indicators
Vinks_o_7 Hi Luxrun http://www.marketgauge.com/wp-content/uploads/2016/04/MG-Real-Motion-Indicator-De...
Ciccio Thanks @luxrun Read the pdf file
luxrun Thanks for the indication of the pdf. I'm actually looking for something more practical with...
Xenotrax A première vue, sa à l'air d'être un indicateur très puissant sur de petites temporalités, j...
merri Bonjour Nicolas, Comment transformer cet indicateur en bot sur PRT ?
Nicolas Cela a déjà été fait, voir ce sujet: https://www.prorealcode.com/topic/strategia-con-lindica...
Nicolas change the last line with: return v coloured(r,g,b) style(line,2), v+band coloured(168,168,1...
Paolo.B Thanks ... works as i wanted.
Kanamax Bonjour Nicolas, comme Paolo.B je souhaiterais utiliser cette indicateur au sein d'un code. ...
Boris Hi IVMcm, thanks for your amazing work. I have tested all of your indicators and use some of...
IV Mcm With pleasure and thanks!
ashiash how to use this indicator can i use tradingview platform
Paris On est bien d accord que l indicateur repeint ....
Nicolas naturellement si la bougie du timeframe supérieur n'est pas terminé
ThePenntChemist Does this show 5min time frame?
zilliq Thanks @Nicolas. I tried to use it as Trend in a proorder system, but don't know why, it doe...
Suzu Yuk He is right. MT and mavgMT are not defined and causing errors.....

Top