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 alifarahani, Today, 09:40 AM
        6 responses
        25 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
        13 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