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

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 needsomehelp147, 04-29-2024, 06:43 AM
      2 responses
      19 views
      0 likes
      Last Post needsomehelp147  
      Started by sidlercom80, 10-28-2023, 08:49 AM
      177 responses
      2,400 views
      0 likes
      Last Post jeronymite  
      Started by algospoke, Today, 06:36 PM
      0 responses
      6 views
      0 likes
      Last Post algospoke  
      Started by ETFVoyageur, Yesterday, 06:05 PM
      8 responses
      53 views
      0 likes
      Last Post ETFVoyageur  
      Started by futtrader, 04-21-2024, 01:50 AM
      7 responses
      69 views
      0 likes
      Last Post NinjaTrader_Eduardo  
      Working...
      X