Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to enter 2 contracts only on Tuesday

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

    How to enter 2 contracts only on Tuesday

    How would I setup Ninjatrader to take 2 contracts on Tuesday and any other day it should only trade with 1 contract.

    #2
    Hello wallsteetking,

    Thanks for your post.

    You could try something like the following:

    Code:
    int quantity = 1;
    
    if (Time[0].DayOfWeek == DayOfWeek.Monday)
    {
    quantity = 2;
    }
    
    EnterLong(quantity, "myLong");
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      how/where can i put this code inside a strategy that I have already build???

      Comment


        #4
        Hello,

        I would recommend placing the code at the top of OnBarUpdate. You will need to replace the number of quantity on any Enter calls you have with the variable quantity.

        Also, the code I posted earlier would work on Mondays. That was my mistake.

        Instead you want Time[0].DayOfWeek == DayOfWeek.Tuesday.
        Chelsea B.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Segwin, 05-07-2018, 02:15 PM
        14 responses
        1,789 views
        0 likes
        Last Post aligator  
        Started by Jimmyk, 01-26-2018, 05:19 AM
        6 responses
        838 views
        0 likes
        Last Post emuns
        by emuns
         
        Started by jxs_xrj, 01-12-2020, 09:49 AM
        6 responses
        3,294 views
        1 like
        Last Post jgualdronc  
        Started by Touch-Ups, Today, 10:36 AM
        0 responses
        13 views
        0 likes
        Last Post Touch-Ups  
        Started by geddyisodin, 04-25-2024, 05:20 AM
        11 responses
        63 views
        0 likes
        Last Post halgo_boulder  
        Working...
        X