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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      81 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      42 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      64 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      66 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      54 views
      0 likes
      Last Post CarlTrading  
      Working...
      X