Scalping line indicator

Scalping line indicator

Here is another derivated indicator of the stair step moving average exploration. This time the stairstep MA (the main trend) represent the center of the oscillator. The signal line (white line on screenshot attached) is the difference between this center and a simple moving average of 7 periods by default. 

Trade signals seems pretty effective on tick charts representation (DAX/GER30 100 or 20 ticks for example). Take long when signal line cross above zero and short below it. Of course, as always objectives and stoploss protection are your responsabilities 🙂

You can play with different parameters to sweet any other instruments.

 

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. XBKZ • 10/21/2015 #

    Bonjour,
    Je trouve votre indicateur très intéressant. J’ai essayé de créer un autre indicateur qui appelle celui-ci pour lisser la courbe “scalping line” mais il ne se passe rien. Y a t’il un moyen de faire un fichier log ou de créer un message pour visualiser les variables ? Je vous poste mon code si vous avez un moment. Je vous en remercie par avance.
    // Scalping Line Lissée
    // Utilise Scalping Line et en fait la moyenne mobile

    //parameters of Scalping Line Indicator
    //percent = 1
    //mainperiod = 100
    //signalperiod = 7

    //MMPeriod = 2

    numerateur = 0
    For i = MMPeriod to 0
    linedraw, ignored = CALL \"Scalping line\"[percent, mainperiod, signalperiod]
    numerateur = numerateur + linedraw
    NEXT

    moyenne = numerateur / (MMPeriod + 1)

    RETURN moyenne as \"scalp line lisse\", 0 as \"center line\"

     

    • Nicolas • 10/21/2015 #

      Pour visualiser une variable, il suffit de l’ajouter dans la fonction RETURN et la plateforme l’affichera tout simplement 🙂
      Pour lisser une information issue d’une variable, tu peux utiliser un indicateur de moyenne mobile existant dans la plateforme comme ceci :
      lissage = average[20](linedraw)
      Où 20 est la période de lissage.

  2. cruxtrader • 10/21/2015 #

    Hello Nicolas, Is this script Ninjatrader Compatible ?

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar
Related users ' posts
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...
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
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