Variable Moving Average (VMA)

Variable Moving Average (VMA)

A VMA is an EMA that is able to regulate its smoothing percentage based on market inconstancy automatically. Its sensitivity grows by providing more weight to the ongoing data as it generates a better signal indicator for short and long-term markets.

The majority of ways for measuring Moving Averages cannot compensate for sideways moving prices versus trending markets and often generate a lot of false signals. Longer-term moving averages are slow to react to reversals in trend when prices move up and down over a long period of time. A Variable Moving Average regulates its sensitivity and lets it function better in any market conditions by using automatic regulation of the smoothing constant.

The Variable Moving Average is also known as the VIDYA Indicator. But this version is a modified concept of the VIDYA.

The Variable Moving Average was developed by Tushar S. Chande and first presented in his March, 1992 article in Technical Analysis of Stocks & Commodities magazine, in which a standard deviation was used as the Volatility Index. In his October, 1995 article in the same magazine, Chande modified the VIDYA to use his own Chande Momentum Oscillator (CMO) as the Volatility Index, the VMA code below is the result of this modification.

 

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. Matriciel • 12/14/2016 #

    Bonjour Nicolas,
    Je me suis amusé à doubler la VMA. Je ne sais pas si cela a un intéret…mais maintenant c’est fait ! 🙂
    //PRC_Variable Moving Average | indicator
    //14.12.2016
    //Nicolas @ www.prorealcode.com
    //Sharing ProRealTime knowledge
    //converted and adapted from Pinescript version

    // --- parameters
    src=customclose
    //l = 4

    if barindex>l then
    k = 1.0/l
    pdm = max((src - src[1]), 0)
    mdm = max((src[1] - src), 0)
    pdmS = ((1 - k)*(pdmS[1]) + k*pdm)
    mdmS = ((1 - k)*(mdmS[1]) + k*mdm)
    s = pdmS + mdmS
    pdi = pdmS/s
    mdi = mdmS/s
    pdiS = ((1 - k)*(pdiS[1]) + k*pdi)
    mdiS = ((1 - k)*(mdiS[1]) + k*mdi)
    d = abs(pdiS - mdiS)
    s1 = pdiS + mdiS
    iS = ((1 - k)*(iS[1]) + k*d/s1)
    hhv = highest[l](iS)
    llv = lowest[l](iS)
    d1 = hhv - llv
    vI = (iS - llv)/d1
    vmacourte = (1 - k*vI)*(vmacourte[1]) + k*vI*src
    endif

    // --- parameters
    src2=customclose
    //l2 = 9

    if barindex>l2 then
    k2 = 1.0/l2
    pdm2 = max((src2 - src2[1]), 0)
    mdm2 = max((src2[1] - src2), 0)
    pdmS2 = ((1 - k2)*(pdmS2[1]) + k2*pdm2)
    mdmS2 = ((1 - k2)*(mdmS2[1]) + k2*mdm2)
    s2 = pdmS2 + mdmS2
    pdi2 = pdmS2/s2
    mdi2 = mdmS2/s2
    pdiS2 = ((1 - k2)*(pdiS2[1]) + k2*pdi2)
    mdiS2 = ((1 - k2)*(mdiS2[1]) + k2*mdi2)
    d2 = abs(pdiS2 - mdiS2)
    s12 = pdiS2 + mdiS2
    iS2 = ((1 - k2)*(iS2[1]) + k2*d2/s12)
    hhv2 = highest[l2](iS2)
    llv2 = lowest[l2](iS2)
    d12 = hhv2 - llv2
    vI2 = (iS2 - llv2)/d12
    vmalongue = (1 - k2*vI2)*(vmalongue[1]) + k2*vI2*src2
    endif

    RETURN VMACOURTE coloured (100,100,215), VMALONGUE coloured (255,0,150)
     

  2. Matriciel • 12/14/2016 #

    Je n’arrive pas à joindre l’image qui montre la VMA Doublée…:(

    • Nicolas • 12/14/2016 #

      Merci pour l’indicateur double VMA ! En effet, ajouter des images serait un plus dans les commentaires, je dois m’en occuper prochainement.

  3. Ernesto1 • 12/14/2016 #

    L’ indicateur a changé de Matriciel, pas vu sur 10-3.vous  pouvez résoudre ce problème?merci

    • Nicolas • 12/14/2016 #

      Une solution rapide consisterait à placer 2 fois l’indicateur avec des valeurs de “l” différente sur votre graphique Ernesto1.

  4. supertiti • 12/14/2016 #

    Voici un code de VIDYA construit par Sohocool :
    // MOYENNE EXPONENTIELLE ADAPTIVE VIDYA by Soho

    a=2/(n+1)
    if (STD[m](close)) <> 0 then
    k= STD[n](close) / (std[m](close))
    filt= a*k*close + (1-(a*k))*filt[1]
    else
    filt=close
    endif
    cc = customclose

    return cc as \" cc \" , filt as \"vidya\"

    // variables :
    // n = 9 alpha et standard deviation
    // m = 30 standard deviation
    // a = alpha

     

    • Matriciel • 12/14/2016 #

      Merci Supertiti.
      Je trouve que ce code est difficile à règler et n’est pas d’une grande précision.

  5. Ernesto1 • 12/14/2016 #

    J’ai essayé avec deux différents I ,  a =  3 périodes et un 3 x 5 = 15 périodes.Ie comme si le TF est lissée de 3 minutes à 15 minutes, ceci est le résultat ..

  6. Wilko • 12/14/2016 #

    Nicolas, anytime I have an idea, I just search for it on ProRealCode and usually you have done an adaptation. Excellent work, thanks!
    I am aware I have promised to post something of my own, and would very much like to adapt the above to use R2 instead of CMO. However, this is spontaneously above my capabilities. Any chance you would be interested to have a go?
     
    Kind regards,
    Wilko

    • Nicolas • 12/14/2016 #

      Of course! please add a query in probuilder forum and we’ll work together on this indicator project.

  7. morgiza • 12/14/2016 #

    Hi Nicolas,
    As far as I understand this is the Variable (CMO) Moving Average. However, when comparing Skechers (SKX) with a Sharescope graph the MA lines are different. The 6 period is somewhat similar but the 21 period is way off. I’m wondering if I’ve done something wrong? I have a side by side screenshot but am not allowed to attach a picture to this post. It is on dropbox at https://www.dropbox.com/s/v0ftuaup60mq6ra/2017-06-19%20%282%29.png?dl=0
    Thank you.

    • Nicolas • 12/14/2016 #

      I don’t know the formula of the moving average you are comparing this indicator with sorry.. They seems a lot different though, so I think they are completely different indicator!
      There are a lot of different moving average type in this other indicator : https://www.prorealcode.com/prorealtime-indicators/average-filter-regression/
      You might find something more relevant in them.

    • morgiza • 12/14/2016 #

      Thank you Nicolas. The Sharescope MA is also meant to be Variable (CMO) Moving Average. The formula I have for this is:
      Today’s VMA value = ((EP * VR) * Close) + ((1 – (EP * VR)) * Yesterday’s MAwhere: EP is the Exponential Percentage = 2 / (time period + 1)VR is the Volatility Ratio = 9-day Chande Momentum Oscillator / 100
      Not sure if this helps? I will go through the other MAs on the link you sent.
      Paul

    • Nicolas • 12/14/2016 #

      This formula has nothing to deal with the indicator of this post 🙂 I can translate it for sure, please add a request in the ProBuilder forum. Thank you.

  8. morgiza • 12/14/2016 #

    Thank you very much! Request submitted.Paul

  9. JeanChristophe127 • 12/14/2016 #

    Bonjour,
    Est-ce que quelqu’un peut me donner un lien vers la formule de base de cet indicateur. Tout ce que je peux trouver sur le net correspond à ce que Morgiza annonce (et est présenté comme le résultat des travaux de Chande), mais visiblement, Nicolas semble utiliser une autre formule… Je suis perdu!

    • Nicolas • 12/14/2016 #

      Je l’ai converti depuis un code pinescript. De mémoire il s’agit bien d’une variation d’une moyenne mobile type Vydia.

  10. Captain_Walker • 12/14/2016 #

    @Nicolas, I’ve copied your code into PRT indicator panel to create it. When I attempt to save it a dialogue pops up saying “l2 is undefined”. I’m using PRT 10.3. I have checked that I am copying and pasting the code accurately. I can’t workout what’s wrong can you help?

    • Nicolas • 12/14/2016 #

      Download the itf file and import it.

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
swapping merci gabri, on va le mettre à l'essai ;)
Leo Hi all, I posted a new version of this indicator ( I just add arrows to spot the local maxi...
Trading_En_El_Ibex35 Muchas Gracias por compartir este interesante indicador. Un saludo
xavieralava hola gracias leo
Khaled Thanks, but if I may ask what's EMA Period? The price which reverses the EMA[20] is not the ...
Francesco78 EMA is not a moving average, it is just the name we called the quantity defined above
Khaled My bad. Thank you so much!
rejo007 hello david, i'll try it could you tell me wich strategy do you use in real? thanks
David Somogyi Hello, I have a couple of DAX strategies of breakout and mean reversion. I'll try to post...
Roberto Blázquez Hi David, I just saw your strategy and it's good!!! I'm going to try it from today in real a...
Thomas007 Is there any way to build something similar for FX? I wonder what would be the replacement f...
Kris75 Hi Bolsatrilera, I love this indicator! Thanks; => did you develop a strategy around...
KarlBenjamin This "indicator" alone has completely changed my algorithms for the better! Id even go as fa...
ashee CAN YOU SHARE MT4 FILE
coyP Big thanks ! Can you explain me how can I put this ON my graph and not under the graph please ?
Wing There's a few threads on the forum about backtest and live trades being different at times. ...
ET I agree with verdi55. As it is now, the code will only test for a breakout on the upside (li...
Philipjonasson are u still active Wing?
Nicolas We do not offer free assistance for TOS. However, you can send demand for private paid codin...
phanz Hi community. May I know how you use this indicator please? Is it on the zero cross over? ...
sydney43025 Hello, I'm digging up this topic because I uploaded the code on a PRT v11.1 but the indicato...
David Balance thanks for sharing this excellent indicator.  Here are some thoughts.  please ad...
supertiti Il manque 2 slash devant len dans le code dur car la variable ne marche pas bonne journée
bearbull As per PhilipSchultz question above, has anybody managed to add code for when it turns blue,...
Ybr35 Bonjour Nicolas, lorsque je lance l'indicateur, il m'est indiqué que je dois définir les var...
Nicolas L'idéal est de télécharger le fichier itf joint sur cette page et de l'importer dans la plat...
Nicolas Merci dans ce cas d'ouvrir un sujet dans le forum ProScreener svp.
Andrea Hi Nicolas, thx for your code. Please i need your help to understand this part of your code:...
Nicolas the MA200 is ascending since 20 periods.
Leo Hi Gabri, have you ever try this in a trading system?
gabri Leo, I used to crosscheck this indicator a long time ago. For the trading I was doing at tha...
Nolubok Bonjour Gabri, merci pour l'ensemble de vos publications, serait il possible d'avoir le scr...
David Somogyi Hello, This is merely a filter indicator for measuring high fractality, which helps to av...
bertrandpinoy bonjour ce code fonctionne toujours?
Nicolas Faites un backtest, vous aurez des réponses.
Krallenmann Hallo Nicolas, kannst du mir die Regeln für den Halftrend Indikator sagen? Aus dem Code kann...
davefransman Dear Nicolas, i want set a alert on the "HalfTrend "custom moving average" met Heikin Ashi w...
Nicolas Please post the question in a new forum topic, that would need custom coding I believe.
Sofitech Ce code n'est valable que sur la V10.3 ? sur le 10.2 il y a une erreur de syntaxe dans le fi...
Nicolas Oui en effet, c'est un indicateur "10.3" à cause uniquement de la mise en forme des courbes ...
Nicolas En effet, c'est le cas si on copie/colle le code. Ces 2 variables sont inscrites en externes...
Salocin Hello Nicolas, my french is not that well. It occurs an error which can not be solved by cop...
Nicolas Just download the ITF file and import it into your platform, follow these easy steps: https:...
Nicolas
7 years ago
Holt EMA
Holt EMA
1
Indicators
robertanthonyuk Hi,What do the each colour represent? Rob

Top