Volatility scalper indicator

Volatility scalper indicator

This indicator is sensing the high volatility of market price. It reflects when the market makes big moves on the same bar. I think it can be applied to any timeframe, but i have a better feeling on applying it on higher timeframe on forex pairs. Nevertheless, it would also make the job on any market, but the treshold parameter would be adapt to point/decimal of the item you would trade.

 

 

 

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. Dimi.A • 10/13/2015 #

    Hey Nic, is there any issue with the indicator on your end with different pairs. I’m not sure what settings I should be using. Could you please provide your settings?Thanks mate!

    • Nicolas • 10/13/2015 #

      The “threshold” parameter should be adapted to the instrument, for Forex, use 0.01 as mentioned in the code.

  2. Dimi.A • 10/13/2015 #

    Thanks mate, how about 0.001? Or is that too sensitive?

    • Nicolas • 10/13/2015 #

      Depends of which pair you are trading and the actual volatility. Since it is not calculated dynamically, you have to set it with a value that suits to the market.

  3. Sofitech • 10/13/2015 #

    Bonjour. J’aimerais savoir s’il est possible de “truquer” un peu l’indicateur pour qu’il donne le résultat sur timeframe plus important que celui affiché… bref de contourner la limitation MTF de PRT pour cet indicateur.

  4. Maz • 10/13/2015 #

    I actually like this very simple idea. It can also be useful for market micro-structure systems (seconds and milliseconds) when used in conjunction with other filters. 
    I have introduced an automatic threshold parameter with smoothing and vertical shift controls. 
    // Volatility Scalper
    // Version 1.2
    // --

    // Variables
    // threshATRPeriod = 40
    // smoothing = 2
    // verticalShiftPercent = 0
    // --

    threshATRPeriod = max(1, threshATRPeriod)
    smoothing = max(1, smoothing)

    diff = averagetruerange[1] - averagetruerange[2]
    if(close-close[1])>0 THEN
    upsidevol = averagetruerange[1] + diff * 0.5
    upsideVol = max(upsideVol, 0)
    downsidevol = 0
    ELSE
    upsidevol = 0
    downsidevol = averagetruerange[1] + diff * 0.5
    downsideVol = max(downsideVol, 0)
    ENDIF

    t = DEMA[smoothing](AverageTrueRange[threshATRPeriod])
    t = t + (t*(verticalShiftPercent/100))

    RETURN upsidevol coloured(150, 200, 100) style(histogram, 1) as \"up\" , downsidevol coloured(200, 150, 100) style(histogram, 1) as \"down\", t as \"treshold\"

     

    • Nicolas • 10/13/2015 #

      Thanks Maz, I’ll have a look tomorrow.

avatar
Register or

Likes

avatar avatar avatar
Related users ' posts
jacquesgermain sì da aggiungere
Maik2404 auf welchen Wert muss ich die Kompresionsperiode stellen?
jacquesgermain — Période de compression : ce paramètre détermine la période de rétrospection utilisée pour ...
AndPar Buongiorno Nicolas, vorrei provare questo indicatore, ma quando lo inserisco in PRT mi vengo...
Nicolas Basta aggiungerlo al prezzo https://www.prorealcode.com/blog/video-tutorials/how-to-add-an-i...
Aragorna hello Nicolas, this indicator works with the last Beta version of PRT? Ive seen tha many in...
SnorreDK Works extremely well - How? How do u implement this in a startegy? Breakoutstrategy?
Keyeming Thanks, but yes same question as above, some explanations on how to read it would be appreci...
Bateson Bonjour. Merci beaucoup ! J'ai installé l'indicateur sur PRT 11 mais pour des raisons qui ...
CederTrader Hi Denis, does this indicator add to the chart as panel, or on the candles. Thanks
Nicolas Add it on the price chart as described in this video: https://www.prorealcode.com/blog/video...
Denis Hello Nicolas and Ceder Trader, Sorry, I only just saw your replies. The indicator is alre...
Seabiscuit Hi! I like this indicator a lot, been using it on a 30 min timeframe and usually confirms my...
Ramahu Bonjour et merci pour cet indicateur ! je l'observe sur les actions du Nasdaq et la plupart ...
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
Nicolas Il doit s'agir d'un mauvais copier/coller. Je suggère de télécharger le fichier itf contenu ...
Bard Hello @Nicolas, I can get this to display in a separate indicator panel but not on Price as ...
Stenozar Hi @Nicolas, how can I put the bands on price? Thanks, Stefano
Fabian Hi IV Mcm, have you drawn the rectangles (Dinamic, Range) by yourself in the chart or are...
IV Mcm Myself to illustrate ;)
oraclus Bonjour indicateur très intéressant existe t il un screener qui détecte les actions qui donn...
IV Mcm Ce n'est pas le but de cet indicateur, mais avec un peu d'entraînement vous pourriez le code...
Yantra Thank you for sharing your good work!
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...
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...
robertogozzi Yes, you can use any setting that suits you best! As to which one... it depends on the inst...
DaxRider grazie Robnerto
Nicolas remplacer les valeurs de coloured(0,255,0) par coloured(r,g,b) et ajouter ces noms de variab...
mohamed merci Nicolas!
sacram14 Merci Nicolas pour ce set-up que je ne connaissais pas ! J'ai tenté de reprendre le code pou...
Vonasi Sure that is possible. I will code it and make a post in the English ProBuilder forum and pu...
Vonasi Vama v2 with Hull moving average included can be found here: https://www.prorealcode.com/top...
JMat45 Thank you, Vonasi.
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'...

Top