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 jxs_xrj, 01-12-2020, 09:49 AM
        5 responses
        3,290 views
        1 like
        Last Post jgualdronc  
        Started by Touch-Ups, Today, 10:36 AM
        0 responses
        7 views
        0 likes
        Last Post Touch-Ups  
        Started by geddyisodin, 04-25-2024, 05:20 AM
        8 responses
        61 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by Option Whisperer, Today, 09:55 AM
        0 responses
        8 views
        0 likes
        Last Post Option Whisperer  
        Started by halgo_boulder, 04-20-2024, 08:44 AM
        2 responses
        24 views
        0 likes
        Last Post halgo_boulder  
        Working...
        X