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
FernetTrader think i found a solution!
monochrome Thanks for the indicator. Very interesting!
monochrome Can you please share how you made it work? I cant seem to make it work in a strategy
Fabian Hi Thomas, thanks for your explanations. Which indicator do you use in the screenshot ...
Thomas Thats On Balance Volume and Bollinger or SMA or what you want. It shows me the volume flow. ...
bertrandpinoy @MAKSIDE I would be grateful if you send me your version. have a nice day
Zigo
4 years ago
Zex-Indicator
Zex-Indicator
6
Indicators
bertrandpinoy Hello Zigo can you turn into an automatic strategy?
eckaw Hey @Zigo thanks for this indicator. May I ask what the multiplier 1.682 is derived from? I ...
Zigo Hello, eckaw, its not so important I had meant 1.618 and not 1.682. It has nothing to do wit...
rama what is the buy condition or sell condition for this can you suggest a code k1=1 buy and k1...
rama I would like to know at point 1 an alert or binary indicator so that I can place order
maxlys Bonjour Nicolas, merci pour ce code qui a l'air intéressant. Comment ajouter dans le code l'...
Marius Zammit Still learning and very new to all this. Can this indicator be turned into an automated trad...
Nicolas Yes sure, please create a dedicated post in the automated trading forum.
leederbyshire Hi is it possible to replace the dots with red/green vertical lines? Thank you.
darbes Hi How does it go on live ? JC
antonio73 Balmora74, io vedo che funziona anche su timeframe ad 1 minuto con piccole ottimizzazioni, t...
Juananantoniorodriguez hola buenas, a este sistema automático, Cómo se le podría poner un stoploss de beneficio sim...
arnaudat Merci nicolas, j'ai déjà pris cette version et en plus je suis sur les futures. Par contre d...
ullle73 hi nicolas, when im making a strategy out of this i get the error "PRC_VWAP z-score" called ...
Nicolas Please open a new topic in the ProOrder forum section and post the code there in order to ch...
Bard Problems with Safari latest s/ware and this site and links and adding code. Let me add the...
grimweasel47 Ok thanks Nicolas - could this be adapted to take into account MFI and then have price, volu...
Nicolas I don't understand what you mean exactly, would be better to open a topic about this idea wi...
Nicolas Yes, that's how it goes when using loops..
JosephFelix Hi, Could I please have help with adding these indicators 'on price'? Every indicator that I...
Nicolas Just add it on price by clicking the wrench on the left upper side of the price chart.
s00071609 Is it possible to have fibo numbers like 1, 2, 3, 5,8 sequence by modifying the calculation?
Nicolas sorry i dont get it. you want to plot the next level at current price + ratio?
s00071609 I meant not plotting 4, 6 and 7. This question about having 1,3,5,8 sequence was meant to be...
bertrandpinoy hi Leo, are you still using thoses strategy right now?
avatar
crazytrader Any improvements of this?
princedon184 hi my name is prince i need help
YvesRobert Merci beaucoup Nicolas. Existe t'il un petit programme qui permet de tracer sur la graphe en...
Nicolas Oui il y a celui ci: https://market.prorealcode.com/product/prt-renko/?lang=fr
YvesRobert Bonjour Nicolas, j'ai une question technique à te poser. Je visualise souvent le cours en RE...
ALE
6 years ago
settival CIAO ALE CREDO DI AVER SETTATO PER BENINO LO SCALPING INDICATOR MA NON VISUALIZZO I SEGNALI ...
graff.laetitia Hello, I'm sorry to bother you, I'm new to trading, I managed to download the indicator but ...
Alby118 i can get it to work? dax 1 min. upload indicator on the4 chart. thank you
GraHal Is this the Discussion Topic you need @Gregg https://www.prorealcode.com/topic/scalping-i...
bertrandpinoy bonjour Nicolas y a t il une possibilité de signal sonore dès qu une vente ou un achat serai...
Nicolas Oui cela nécessitera une adaptation du code cependant, merci de formuler une demande sur le ...
Nicolas
7 years ago
swapping Bonjour Nicolas, comment doit-on modifier le code (ou ajouter la variable "style") pour que ...
Nicolas Il faut changer la dernière ligne du code par : return ibuf108 style(line,2) as "Vostro", ...
swapping Merci beaucoup Nicolas, c'est mieux ainsi ...
Jan Wind Thanks for the indicator. Seems to indicate the start of the short term trend quite well, ...
Nicolas Questo indicatore è stato progettato solo per i dati intraday, ma potrebbe essere adattato a...
MrCrous //FR Bonjour, Dans le code ci dessus, je ne comprends pas ce que fait la ligne : linea...
Nicolas J'ai déjà répondu à cette question quelque part sur le forum. Il faudrait chercher un topic ...
dzim0032 J'avais oublié de mettre un commentaire pour la vente du scalper dont les règles sont justes...
Nicolas Non ça n'est pas encore possible.
Denis Merci Nicolas.
Yann LB Bonjour à tous, Est-il possible de rajouter un morceau de code qui permette d'afficher (s...

Top