Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to open a position immediately in 4 instruments?

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

    How to open a position immediately in 4 instruments?

    Code:
        public class Test : Strategy
        {
            protected override void Initialize()
            {
    			Add(@"YM 12-15", PeriodType.Minute, 1);
    			Add(@"NQ 12-15", PeriodType.Minute, 1);
    			Add(@"TF 12-15", PeriodType.Minute, 1);
                            CalculateOnBarClose = false;
    			Enabled = true;
            }
    
            protected override void OnBarUpdate()
            {
    			if(Historical) return;
    			EnterLong(0,1,"b1");				
    			EnterLong(1,1,"b2");				
    			EnterLong(2,1,"b3");				
    			EnterLong(3,1,"b4");				
            }
        }
    Open position only on ES and YM, NQ and TF is empty (all hands to open can). How to immediately open positions in all these instruments ?
    Thanks in advance.
    Last edited by Prival; 10-25-2015, 01:00 PM.

    #2
    Hello Prival,

    Please check the EntriesPerDirection variable. For example:
    Code:
        public class Test : Strategy
        {
            protected override void Initialize()
            {
    			Add(@"YM 12-15", PeriodType.Minute, 1);
    			Add(@"NQ 12-15", PeriodType.Minute, 1);
    			Add(@"TF 12-15", PeriodType.Minute, 1);
                            CalculateOnBarClose = false;
    			Enabled = true;
                            [B]EntriesPerDirection = 4; 
                            EntryHandling = EntryHandling.AllEntries;[/B]
    
            }
    
            protected override void OnBarUpdate()
            {
    			if(Historical) return;
    			EnterLong(0,1,"b1");				
    			EnterLong(1,1,"b2");				
    			EnterLong(2,1,"b3");				
    			EnterLong(3,1,"b4");				
            }
        }
    More information can be found in our help guide here: http://ninjatrader.com/support/helpG...esperdirection

    Please let me know if I may be of further assistance.
    Michael M.NinjaTrader Quality Assurance

    Comment


      #3
      EntriesPerDirection = 4; EntryHandling = EntryHandling.AllEntries;

      Thank you. Helped
      Last edited by Prival; 10-25-2015, 03:24 PM.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      597 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      343 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      556 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      555 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X