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 bmartz, 03-12-2024, 06:12 AM
                5 responses
                32 views
                0 likes
                Last Post NinjaTrader_Zachary  
                Started by Aviram Y, Today, 05:29 AM
                4 responses
                13 views
                0 likes
                Last Post Aviram Y  
                Started by algospoke, 04-17-2024, 06:40 PM
                3 responses
                28 views
                0 likes
                Last Post NinjaTrader_Jesse  
                Started by gentlebenthebear, Today, 01:30 AM
                1 response
                8 views
                0 likes
                Last Post NinjaTrader_Jesse  
                Started by cls71, Today, 04:45 AM
                1 response
                8 views
                0 likes
                Last Post NinjaTrader_ChelseaB  
                Working...
                X