Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

track price set by attach to indicator

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

    track price set by attach to indicator

    I use the attach to indicator entry method often using MIT orders. sometimes, I notice that the order is not filled as the spread is bit high. is there a way, I can alert myself when my order price is just between the bid and ask so I can just make it into a market order?

    #2
    Hello junkone,

    Thank you for your note.

    Use an Order object to hold the order and then check it's level against the needed prices. If it meets the criteria then submit it as a different order.

    For example:
    Code:
    			MyOrder = EnterLongMIT(Close[0] - (2 * TickSize));
    			
    			if (MyOrder.StopPrice < GetCurrentAsk()
    				&& MyOrder.StopPrice > GetCurrentBid())
    			{
    				MyOrder = EnterLong();
    			}
    For information on Order objects please visit the following link: http://ninjatrader.com/support/helpG...n-us/order.htm

    Comment


      #3
      my issue is that I use charttrader to enter orders and manage the exit using OCO ATM Strategy template. at the moment, I don't see a way I can monitor orders entered using the chart trader . do you folks see a work around here?

      Comment


        #4
        Hello junone,

        You could check the order on the SuperDOM using a custom column and OnOrderUpdate(): http://ninjatrader.com/support/helpG...rderupdate.htm

        Comment


          #5
          this is cool. is there a sample class file that i can use to understand the behaviour?

          Comment


            #6
            Nothing in regards to orders, but you can find the APQ, Notes, ProfitLoss, and Volume SuperDOMColumns under the NinjaScript Editor.

            Comment


              #7
              can you clarify what these columns are supposed to do? there is no notes or comments on Notes, ProfitLoss,or Volume

              Comment


                #8
                Hello junkone,

                Thank you for your response.

                You can find descriptions at the following link under "Understanding the default system columns": http://ninjatrader.com/support/helpG...om_columns.htm

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by helpwanted, Today, 03:06 AM
                1 response
                16 views
                0 likes
                Last Post sarafuenonly123  
                Started by Brevo, Today, 01:45 AM
                0 responses
                11 views
                0 likes
                Last Post Brevo
                by Brevo
                 
                Started by aussugardefender, Today, 01:07 AM
                0 responses
                6 views
                0 likes
                Last Post aussugardefender  
                Started by pvincent, 06-23-2022, 12:53 PM
                14 responses
                244 views
                0 likes
                Last Post Nyman
                by Nyman
                 
                Started by TraderG23, 12-08-2023, 07:56 AM
                9 responses
                387 views
                1 like
                Last Post Gavini
                by Gavini
                 
                Working...
                X