Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Access Chart Trade QTY input from an indicator

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

    Access Chart Trade QTY input from an indicator

    Hi guys,

    I have an indicator which I would like to have change the order quantity in the chart trader on the same chart. Is anyone able to point me in the right direction for achieving this?

    (the indicator updates on price change).

    Thanks & cheers,
    Shane

    #2
    Hi Shane,

    I'm currently looking into if this is possible and allowed for NinjaTrader 8.

    In my testing I've found its possible to change the text of the quantity textbox but this does not cause NinjaTrader to use that new value.

    I am checking with our development to see if there is a way to do this and I appreciate your patience.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Hi Shane,

      I was able to find that the selector class that contains both the text and the up / down buttons can have the value set and this works correctly.

      Code:
      ChartControl.Dispatcher.InvokeAsync((Action)(() =>
      {
      	NinjaTrader.Gui.Tools.QuantityUpDown quantitySelector = (Window.GetWindow(ChartControl.Parent).FindFirst("ChartTraderControlQuantitySelector") as NinjaTrader.Gui.Tools.QuantityUpDown);
      
      	quantitySelector.Value = 5;
      }));
      Chelsea B.NinjaTrader Customer Service

      Comment


        #4
        Thanks Chelsea, much appreciated!
        Last edited by ShaneAU; 05-13-2016, 01:41 PM.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by MGHORBEL, Today, 02:28 AM
        0 responses
        4 views
        0 likes
        Last Post MGHORBEL  
        Started by dcriador, Today, 01:43 AM
        1 response
        7 views
        0 likes
        Last Post dcriador  
        Started by louiseruch, Today, 01:11 AM
        0 responses
        1 view
        0 likes
        Last Post louiseruch  
        Started by kujista, Today, 12:39 AM
        0 responses
        6 views
        0 likes
        Last Post kujista
        by kujista
         
        Started by tonynt, 05-21-2019, 06:27 AM
        11 responses
        536 views
        1 like
        Last Post NinjaTrader_Jason  
        Working...
        X