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