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 llanqui, Today, 10:32 AM
        0 responses
        2 views
        0 likes
        Last Post llanqui
        by llanqui
         
        Started by StockTrader88, 03-06-2021, 08:58 AM
        45 responses
        3,992 views
        3 likes
        Last Post johntraderuser2  
        Started by TAJTrades, Today, 09:46 AM
        0 responses
        8 views
        0 likes
        Last Post TAJTrades  
        Started by rhyminkevin, Yesterday, 04:58 PM
        5 responses
        62 views
        0 likes
        Last Post dp8282
        by dp8282
         
        Started by realblubb, Today, 09:28 AM
        0 responses
        8 views
        0 likes
        Last Post realblubb  
        Working...
        X