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 alifarahani, Today, 09:40 AM
        6 responses
        36 views
        0 likes
        Last Post alifarahani  
        Started by Waxavi, Today, 02:10 AM
        1 response
        17 views
        0 likes
        Last Post NinjaTrader_LuisH  
        Started by Kaledus, Today, 01:29 PM
        5 responses
        14 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by Waxavi, Today, 02:00 AM
        1 response
        12 views
        0 likes
        Last Post NinjaTrader_LuisH  
        Started by gentlebenthebear, Today, 01:30 AM
        3 responses
        17 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Working...
        X