Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 GussJ, 03-04-2020, 03:11 PM
    16 responses
    3,281 views
    0 likes
    Last Post Leafcutter  
    Started by WHICKED, Today, 12:45 PM
    2 responses
    19 views
    0 likes
    Last Post WHICKED
    by WHICKED
     
    Started by Tim-c, Today, 02:10 PM
    1 response
    9 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by Taddypole, Today, 02:47 PM
    0 responses
    5 views
    0 likes
    Last Post Taddypole  
    Started by chbruno, 04-24-2024, 04:10 PM
    4 responses
    53 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Working...
    X