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

Port this line correctly

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

    Port this line correctly

    Hello,

    Could someone tell me the correct way to port this line from NT7 to NT8?


    Values[0].Set(max.Key);


    Many thanks!!

    #2
    Hello rafaelmarcos,

    Thanks for the note.

    You can do two things. You can just set the Values[0][0] index to max.Key like this:

    Code:
    Values[0][0] = max.Key;
    Alternatively, if you have a plot that is set up as a public property like you can reference the name of that public property.

    Ex:

    Code:
    protected override void OnBarUpdate()
    {
    	MyPlot[0] = max.Key;
    }
    ...
    
    [Browsable(false)]
    [XmlIgnore]
    public Series<double> MyPlot
    {
    	get { return Values[0]; }
    }
    Please let us know if we may be of any further assistance.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Thanks a lot ChrisL!!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by AveryFlynn, Today, 04:57 AM
      1 response
      10 views
      0 likes
      Last Post NinjaTrader_Erick  
      Started by Max238, Today, 01:28 AM
      4 responses
      37 views
      0 likes
      Last Post Max238
      by Max238
       
      Started by r68cervera, Today, 05:29 AM
      1 response
      9 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by geddyisodin, Today, 05:20 AM
      1 response
      11 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by timko, Today, 06:45 AM
      2 responses
      14 views
      0 likes
      Last Post NinjaTrader_ChristopherJ  
      Working...
      X