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 AaronKoRn, Today, 09:49 PM
        0 responses
        7 views
        0 likes
        Last Post AaronKoRn  
        Started by carnitron, Today, 08:42 PM
        0 responses
        9 views
        0 likes
        Last Post carnitron  
        Started by strategist007, Today, 07:51 PM
        0 responses
        10 views
        0 likes
        Last Post strategist007  
        Started by StockTrader88, 03-06-2021, 08:58 AM
        44 responses
        3,980 views
        3 likes
        Last Post jhudas88  
        Started by rbeckmann05, Today, 06:48 PM
        0 responses
        9 views
        0 likes
        Last Post rbeckmann05  
        Working...
        X