Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to specify that I want long position to be taken in the current bar itself

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

    How to specify that I want long position to be taken in the current bar itself

    Hi,

    I am beginner in programming NinjaScript, and have a question on NinjaScript.
    Suppose I write the following code:

    if (MAX(High, 10)[1] > High[0])
    {
    EnterLongLimit(MAX(High, 10)[1] + 0.05);
    }

    I believe the following is what happens (assuming daily prices) if I run the above code: If today’s high is greater than the highest high of last 10 days excluding today, a long position will be taken tomorrow at the specified limit price. Is my understanding correct? If so, how can I specify that the long position should be taken today itself (i.e., in the current bar 0) at the specified limit price?

    Thanks

    Vineeth

    #2
    One more thing: This is purely for doing backtesting based on historical daily data

    Comment


      #3
      I am sorry for all the confusion. There was a mistake in the earlier code. The correct code should be:

      if (High[0] > MAX(High, 10)[1])
      {
      EnterLongLimit(MAX(High, 10)[1] + 0.05);
      }

      Comment


        #4
        Hello vineeth,

        Thanks for your posts.

        Using daily bars you would be unable to enter on the same bar that the condition is true because the condition is not known until the end of the daily bar.

        What you could do is add an intraday data series and check the high of each bar against the prior 10 day daily high and submit the order at that time, intraday. Here is a link to a reference strategy that demonstrates adding a faster data series for intrabar fills. https://ninjatrader.com/support/foru...ead.php?t=6652

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        571 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        330 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        548 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        549 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X