Scalper trade signals John Carter

Scalper trade signals John Carter

Buy and Sell signals made of the John Carter’s scalper indicator.

 

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. gianlox • 08/21/2016 #

    Hi, very interesting,
    in the chart you have also used Donchian  channel (20 period ) and parabolic sar?

  2. bard • 08/21/2016 #

    For the signal is the DPO needed
    The Donchain and the PSAR are only for watching 
     

    • baaz • 08/21/2016 #

      How would this look like without DPO? seem like, I cannot just remove DPO part as it is used in the remaining part as well?

  3. zilliq • 08/21/2016 #

    Bard,  
    When you copy à code from another website it will be Nice to precise it !
    Because if it was your code you would know it repaints badly !!! 
    Don’t use it and go directly to the trash 🙁
     

    • Nicolas • 08/21/2016 #

      This code is from HK-LISSE website and can be found here: http://hk-lisse.over-blog.com/article-21382754.html
      Bard added histogram signals to this original code and has gently proposed it to the Library.
      Because of use of the DPO with future informations, this indicator do “repaint”. I know some people use it even if it is the case. So here it is.

  4. supertiti • 08/21/2016 #

    HelloQuelqu’un peut m’aider à introduire du texte sur l’histogramme, je n’y parvient pas ! ça doit être quelque chose comme cela mais le placer où ?merci de votre aide
    If golong = (siigna < mb) then
    DRAWTEXT ( \"G \" ,barindex,- 0.5,dialog,standard,20) coloured ( 49,49,220 )
    endif

    If goshort = (signa > mb)*-1 then
    DRAWTEXT ( \"G \" ,barindex,- 0.5,dialog,standard,20) coloured ( 49,49,220 )
    endif
     

    • zilliq • 08/21/2016 #

      That’s what I say, 
      It isn’t correct to paste a code without any précision of the real author 
      And without to precise it repaints 
      There is no magic without such à code because generally signals are given after
      Have a nice evening 
       

  5. supertiti • 08/21/2016 #

    Bonjour à tous,
     
    personne pour répondre à mon petit problème posé il y a deux jours ?!
    bonne journée,bons trades.

  6. ernesto • 08/21/2016 #

    this is not valid for proOrder.

  7. supertiti • 08/21/2016 #

    Bonjour,
     
    Toujours personne pour mettre du texte sur les histogrammes ??
    merci

  8. bard • 08/21/2016 #

    Je ne travaille pas avec v10,3Je ne peux pas vous aider, malheureusement,

  9. supertiti • 08/21/2016 #

    Scalp.jpg         You don’t have permission to attach files to this post.

     
    Nicolas : Pourquoi ne peux t on pas remonter des images avec le bouton add/ edit attachments ! ça m’arrive souvent
     
     

  10. supertiti • 08/21/2016 #

    j’arrive a sortir du texte mais pas les deux à la fois : texte et histogramme, je voulais illustrer par une image mais ça bug !

  11. ladefense • 08/21/2016 #

    poubelle ….

  12. senator-fred • 08/21/2016 #

    Why is the Indicator changing when i refresh my charts? Sometimes there is a signal and when i reload the chart the signal is no more there….kind of confusing…

    • Nicolas • 08/21/2016 #

      Because of the use of DPO which is already know the future in advance when the data history is loading for the first time. DPO “repaint” the past.

  13. senator-fred • 08/21/2016 #

    ah okay, thats the reason why the backtest is so great!

  14. curses • 08/21/2016 #

    Bonjour, vous pouvez créer un screamer avec des signaux de cet indicateur? Je l’ai essayé, mais je reçois de faux résultats. Merci

  15. Sofitech • 08/21/2016 #

    Bonjour.Est-il possible d’enrichir cet indicateur en lui ajoutant un histogramme à 0.5 dans le sens du dernier signal obtenu.Par exemple, un signal vert apparaît. Tant qu’aucun signal rouge n’apparaît, faire apparaître un histogramme achat positif à 0.5.On aurait ainsi Histogramme vert +1 au signal, histogramme bleu à 0.5 tendance achat et histogramme rouge -1 signal vente et rose -0.5 tendance vente.
     

  16. gregus • 08/21/2016 #

    bonjour nicolas
    je viens d aller voir le lien du blog et je vois qu’ Une version temps réel peut en être dérivée.
    peut tu m aider pour la modification
    merci

    • Nicolas • 08/21/2016 #

      L’utilisation du DPO dans cet indicateur n’est utile que pour obtenir des données du futur et ainsi donner à l’indicateur une allure parfaite. C’est une utilisation déviée du DPO par l’auteur pour compenser le fait que la plateforme ne lit qu’une seule fois l’historique. En aucun cas un DPO n’est utile pour calculer une régression linéaire, donc utiliser une autre formule du DPO pour utiliser cet indicateur en trading automatique est inutile et une perte de temps 🙂

  17. gregus • 08/21/2016 #

    merci pour ta reponse nicolas
    loin de moi cet idée je souhaite juste apprendre et ne veux pas utilisé une autre formule de DPO mais simplement une version temps réel pour fixé les signaux je souhaite l utilisé en complément d une strategie mais pas avec des faux signaux.
    j ai trouvé ça qui pourrai le remplacer
    study(title=”TTM scalper indicator”, overlay = true)width = input(2, minval=1)triggerSell = iff(iff(close[1] < close,1,0) and (close[2] < close[1] or close[3] <close[1]),1,0)triggerBuy = iff(iff(close[1] > close,1,0) and (close[2] > close[1] or close[3] > close[1]),1,0)buySellSwitch = iff(triggerSell, 1, iff(triggerBuy, 0, nz(buySellSwitch[1])))SBS = iff(triggerSell and buySellSwitch[1] == false, high, iff(triggerBuy and buySellSwitch[1], low, nz(SBS[1])))clr_s = iff(triggerSell and buySellSwitch[1] == false, 1, iff(triggerBuy and buySellSwitch[1], 0, nz(clr_s[1])))clr = iff(clr_s == 0 , green , red)plot(SBS, color=clr, title=”TTM”, style = circles, linewidth = width)
    je vais tenter de recodé pour m entrainé sinon comment ferai tu pour la modif  version temps réel que je meurt pas idiot lol.
    merci
     
     

  18. learner • 08/21/2016 #

    Hi,
    I am new to FX trading, have been following this website for sometime and also learning pro real code. Since I am using Pro Real time 10.2, I had to convert the above code into screener. I extracted the LONG signal related code from above and created a LONG screener and did the same for SHORT screener. The LONG signal code returns data however the SHORT signal doesn’t, not sure what is wrong with the code. Can you please help? Below is the SHORT signal code, everything is the same from above except for screener keyword at the end.
    once rr=1mb=average[20](typicalprice)k=48n=(k*2)-4p=(n/2)-1
    h1=DPO[n](high)
    moyh=high-h1hi=(moyh-moyh[1]+(high[p])/n)*nhi=(round(hi*100))/100l1=dpo[n](low)
    moyl=low-l1lo=(moyl-moyl[1]+(low[p])/n)*nlo=(round(lo*100))/100clo1=dpo[n](close)
    moyc=close-clo1clot=(moyc-moyc[1]+(close[p])/n)*nclot=(round(clot*100))/100cond1=(high>high[1] and high>high[2])cond2=(cond1 and high>hi[46]) and (barindex>bari or rr=-1)if cond1 and cond2 thenflagg=1targeth=hightargetl=lo[46]elseflagg=0signa=mbendiffor zz=0 to 45if clot[45-zz]<targetl and hi[45-zz]<=targeth and flagg=1 thensigna=high+(averagetruerange[20](close))*.5rr=1bari=barindex+zz+2breakelsif hi[45-zz]>targeth thensigna=mbbreakendifnextcondi=(low<low[1] and low<low[2]) and low<lo[46] and (barindex>bar or rr=1)if condi thenfflag=1target1=lowtarget2=hi[46]elsefflag=0//siigna=mbendiffor kk=0 to 45if clot[45-kk]>target2 and lo[45-kk]>=target1 and fflag=1 then//siigna=low-(averagetruerange[20](close))*.5rr=-1bar=barindex+kk+2breakelsif lo[45-kk]<target1 then//siigna=mbbreakendifnextif barindex < 100 thensigna=undefined//siigna=undefinedendif//golong = (siigna < mb)goshort = (signa > mb)*-1SCREENER[goshort] (Variation AS “%Chg prev bar”)

  19. maxxb • 08/21/2016 #

    salve, ho provato ad usarlo su grafico 1 minuto .. non si aggiorna .. i segnali non si vedono … bisogna ricaricare l’indicatore per vedere i segnali nuovi..  
    hi, I tried to use it on chart 1 minute .. does not update .. the signals are not seen … you have to reload the indicator to see the new signals ..  
     

  20. learner • 08/21/2016 #

    Thanks maxxb for your response. Whys is it that I get results for long without having to reload the indicator? Do I need to reload the indicator every time I run the code? Sorry if it is a stupid question.

  21. proreal82 • 08/21/2016 #

    Is this indicator still useful or not..? Also I don’t understand the above code tweaks from some people not? Please explain.

  22. proreal82 • 08/21/2016 #

    Testing it out, and sorry guys but this indicator is ridiculous. Don’t use it!

  23. rama • 08/21/2016 #

    I have tested this indicator , this is one of the best indicator for scalping , I tested on 3 min and 10 min works excellent

    • Regan2020 • 08/21/2016 #

      Hi Rama, I am using the indicator now, but it doesn’t seem to form live time, and only indicates after refreshing my timeframe? is there something I need to amend?

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
Naren Yanan what is    diplus  diminus  please
Barney Has anyone tested this algon now when PRT 10.3 was released?
Yngve does anyone know if the issue with the TP/SL is resolved ?
JakeDB Answered my own question....Sorry about this question. 5 positions, take profit at 15, loss ...
maxxb sto facendo girare in demo questa strategia modificata a 10 minuti con stop e profit ottimiz...
Manuel9z Hello, this strategy improves with the SL 30 and the TP 10. I have done backtesting and it w...
raviesco Hello Nicolas, Thanks for the post. Do you have an updated version of this screener/indi...
Nicolas
8 years ago
Jean-Claude REGIS ok merci pour la rapidité de la réponse  cordialement    vu ça fonctionne me reste q...
Balian Merci pour l'indicateur J'ai l'impression qu'un truc cloche. Les triggers sont systémtiqeme...
Balian Tout va bien. J'avais mal lu
Nicolas
9 years ago
XBKZ Bonjour, Je trouve votre indicateur très intéressant. J'ai essayé de créer un autre indicat...
Nicolas Pour visualiser une variable, il suffit de l'ajouter dans la fonction RETURN et la plateform...
cruxtrader Hello Nicolas, Is this script Ninjatrader Compatible ?
Sofitech Bonjour. J'aimerais savoir s'il est possible de "truquer" un peu l'indicateur pour qu'il don...
Maz I actually like this very simple idea. It can also be useful for market micro-structure syst...
Nicolas Thanks Maz, I'll have a look tomorrow.
patrick3 Merci Nicolas pour cet indicateur, il est très utile pour voir les vagues

Top