Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Create a simple volatility indicator

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Create a simple volatility indicator

    Hello,

    Could anyone tell me how to do the following indicator:

    V0 = SMA(abs(Close[0]- Close[1]), 10)
    V1 = SMA(abs(Close[0] - Close[1]), 30)
    Val = V0 / V1

    Thanks very much for your help

    Best

    #2
    Hello guilhem,

    Thank you for your post.

    You could create an indicator for the code snippet you are referring to by first instantiating 'V0' and 'V1' as an SMA and instantiate 'abs' and 'Val' as a Series<double>. We set up our variables in State.DataLoaded. In OnBarUpdate we use a CurrentBar check to ensure there are bars being processed for out indicator to calculate. We then assign our abs variable a value, check to make sure that V1 does not return 0, assign Val the value V0 / V1 and finally assign Val to our plot.

    Please see the attached example demonstrating how this could be accomplished.

    Additionally, please see these help guide links for more information.

    Make sure you have enough bars in the data series you are accessing - https://ninjatrader.com/support/help...sub=CurrentBar

    AddPlot - https://ninjatrader.com/support/help...hlightsub=Plot

    Let us know if we may assist further.
    Attached Files
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment


      #3
      Thank you very much :-)

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      581 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      338 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      554 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      552 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X