Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Plotting an SMA line

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

    Plotting an SMA line

    nevermind i remembered i already asked this question before
    Last edited by cbart_1; 09-20-2011, 01:43 PM. Reason: already asked this question before

    #2
    Hello cbart_1,

    Can you please check if you are receiving any errors on the Log tab of the Control Center when using a displacement value of 2 in your original snippet? There isn't any reason that shouldn't work as well as long as you are ensuring you have enough bars on your chart. Please see our Tips section for information on this:

    http://www.ninjatrader.com/support/forum/showthread.php?t=3170

    Please try adding the following snippet to the beginning of your code in OnBarUpdate()
    Code:
    if (Current Bar < 2)
    return;
    You need to ensure you have enough bars on the chart to calculate correctly. If youre looking back 2 bars, you need to check for less than 2... if using 5 you would need to check for less than 5.

    If you're assigning a variable like "displacement" a number, you could also use (if CurrentBar < Displacement) and this will ensure that you're checking for enough bars to meet the displacement value requirement.
    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    559 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    546 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X