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

Plot a variable

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

    Plot a variable

    I'm new to ninjatrader and trying to learn ninjascript/c#. I'm trying to create a simple indicator to get started. I have two variables called today and yesterday. I have two plots called blue and white. What is the line of code I would use to assign the each variable to a plot? Any help is appreciated. I've spent hours just trying to figure out this simple task and just can't do it.

    #2
    Hello n8dogg59,

    In OnStateChange() when State is State.SetDefault add a plot with AddPlot().

    In OnBarUpdate() set the current bar's value of that plot by assigning a value to Value[0].

    Below is a public link to the help guide on AddPlot() and Value.
    AddPlot() - https://ninjatrader.com/support/help...us/addplot.htm
    Value - https://ninjatrader.com/support/help...n-us/value.htm

    For a demonstration, take a look at the code of the SMA indicator.

    Below I am including a link to a forum post with helpful information about getting started with NinjaScript.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thanks for the quick reply, that helped. I can now see one plot but cannot figure out how to see the second. When I enter it how the tutorial shows it won't compile. This is what I have.

      Value[0][0]
      Value[1][0]

      What's the correct way to do it?

      Comment


        #4
        Hello n8dogg59,

        For multiple plots you would need to use Values (plural).

        Values[0][0] = 1;
        Values[1][0] = 2;

        Below is a public link to the help guide on Values.
        Chelsea B.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Lumbeezl, 01-11-2022, 06:50 PM
        31 responses
        817 views
        1 like
        Last Post NinjaTrader_Adrian  
        Started by xiinteractive, 04-09-2024, 08:08 AM
        5 responses
        14 views
        0 likes
        Last Post NinjaTrader_Erick  
        Started by swestendorf, Today, 11:14 AM
        2 responses
        6 views
        0 likes
        Last Post NinjaTrader_Kimberly  
        Started by Mupulen, Today, 11:26 AM
        0 responses
        7 views
        0 likes
        Last Post Mupulen
        by Mupulen
         
        Started by Sparkyboy, Today, 10:57 AM
        1 response
        6 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Working...
        X