Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Add another instrument to script

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

    Add another instrument to script

    Hi,

    Is it possible to add another instrument to a script?

    Example: I run a 1-min NFLX strategy, but I want to know what the SPY is doing as well. If the SPY is up, then I only want to go long NFLX. If the SPY is down, i only want to go short.

    Thanks

    #2
    Hello siroki,

    Yes, this is possible to do inside of a script. For example you may use the Add() method to add an instrument:

    protected override void Initialize()
    {
    // Add an SPY 1 minute Bars object to the strategy
    Add("SPY", PeriodType.Minute, 1);
    }

    Then to check the SPY instrument you may use the Opens, Highs, Lows, Closes values to check.

    protected override void OnBarUpdate()
    {
    // OnBarUpdate() will be called on incoming tick events on all Bars objects added to the strategy
    // We only want to process events on our primary Bars object (main instrument) (index = 0) which
    // is set when adding the strategy to a chart
    if (BarsInProgress != 0)
    return;

    // Closes[1] represents the SPY instrument and Rising check the value of 1 bar ago.
    if ( Rising(Closes[1] )
    EnterLong();
    }

    If you would like to read more information about this you may view our Help Guide at the following link.


    Let us know if you have any further questions.
    JCNinjaTrader Customer Service

    Comment


      #3
      Great, exactly what I was looking for! Thanks!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      59 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      143 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      161 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      97 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      276 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Working...
      X