Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

On daily charts how can I tell the strategy to take just 1 trade per day?

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

    On daily charts how can I tell the strategy to take just 1 trade per day?

    Hello,

    I would like to go long if the current day opening price is above prior day low
    and then exit with a profit target.

    On daily charts I simply tell the (onbarclose = false) strategy to go long,
    but after my target is hit the strategy keeps on trading and does not wait for the next day.

    How can I tell the strategy to take just 1 trade per day?

    Thank you for any help

    #2
    Hi tradereight, you can for example achieve this type of behavior with boolean flags / user variables - http://www.ninjatrader.com/support/f...ad.php?t=15417

    You would then reset the user variable on a new day / session to activate taking trades again.

    Comment


      #3
      Unfortunatly if the strategy is set to onbarclose = false ninjatrader keeps on opening new trades after the old trade is closed on profit target filled.

      I need to set the strategy on daily chart to onbarclose to access the Opening price of the current day...

      If I use user variables like setting the wait_for_next_day variable to FLASE once a position is filled, how can I reset this variable to TRUE on a new bar?

      Comment


        #4
        Hello,

        You would do this by using the following:



        Code:
         if (FirstTickOfBar)
             {       
            //Reset Variables
              }
        -Brett
        BrettNinjaTrader Product Management

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by argusthome, Yesterday, 10:06 AM
        0 responses
        20 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        18 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        14 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        9 views
        0 likes
        Last Post TheRealMorford  
        Started by Mindset, 02-28-2026, 06:16 AM
        0 responses
        40 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X