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 WHICKED, Today, 12:56 PM
                2 responses
                15 views
                0 likes
                Last Post WHICKED
                by WHICKED
                 
                Started by Felix Reichert, Today, 02:12 PM
                0 responses
                1 view
                0 likes
                Last Post Felix Reichert  
                Started by Tim-c, Today, 02:10 PM
                0 responses
                1 view
                0 likes
                Last Post Tim-c
                by Tim-c
                 
                Started by cre8able, Today, 01:16 PM
                2 responses
                9 views
                0 likes
                Last Post cre8able  
                Started by chbruno, 04-24-2024, 04:10 PM
                3 responses
                49 views
                0 likes
                Last Post NinjaTrader_Gaby  
                Working...
                X