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 andrewtrades, Today, 04:57 PM
        1 response
        5 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by chbruno, Today, 04:10 PM
        0 responses
        4 views
        0 likes
        Last Post chbruno
        by chbruno
         
        Started by josh18955, 03-25-2023, 11:16 AM
        6 responses
        436 views
        0 likes
        Last Post Delerium  
        Started by FAQtrader, Today, 03:35 PM
        0 responses
        7 views
        0 likes
        Last Post FAQtrader  
        Started by rocketman7, Today, 09:41 AM
        5 responses
        19 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Working...
        X