Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Finding close price of previous entry

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

    Finding close price of previous entry

    Essentially, I am trying to make a condition where close [0] > close [previous entry]

    I've searched all throughout the NT help guide, but I can't find anything. And I'm used to MT4, so this is all new to me. My guess is that I could somehow use BarsSinceEntry [0] and then using that value to build the condition.

    #2
    Hello Jeddy197,

    Welcome to the NinjaTrader Support Forums!

    Yes, that would be correct that you may use the BarsSinceEntry() method to be able to get the Close price of the bar when you entered.

    You could also save the "CurrentBar" value to a variable to so that you can get the bar value as well.

    Happy to be of further assistance.
    JCNinjaTrader Customer Service

    Comment


      #3
      Thank you. I hate to be spoon fed, but how would that look in syntax?

      Again, I'm very new to this, but trying to learn!

      Comment


        #4
        Hello Jeddy197,

        You may use something like:

        Code:
        if (Close[0] > Close[BarsSinceEntry()] ) 
        {
            // Do something.
        }


        Happy to be of further assistance.
        JCNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by lightsun47, Today, 03:51 PM
        0 responses
        5 views
        0 likes
        Last Post lightsun47  
        Started by 00nevest, Today, 02:27 PM
        1 response
        10 views
        0 likes
        Last Post 00nevest  
        Started by futtrader, 04-21-2024, 01:50 AM
        4 responses
        46 views
        0 likes
        Last Post futtrader  
        Started by Option Whisperer, Today, 09:55 AM
        1 response
        14 views
        0 likes
        Last Post bltdavid  
        Started by port119, Today, 02:43 PM
        0 responses
        10 views
        0 likes
        Last Post port119
        by port119
         
        Working...
        X