Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Stop and target 1 Order after filled entry

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

    Stop and target 1 Order after filled entry

    When submitting a stop and target order for an entry that is being filled that does mean that the broker will charge again for that stop and target order? Or in every submitted order even stop and target the broker will charge it or counted it as another order? Someone could help me on this one and if that is true then someone could give me tips on how to submit an stop and target entry for an entry that will cause another charge from the broker.

    In this case I am referring to orders being submitted by Managed and Unmanaged approach not by using ATM.
    Last edited by edward_bell; 07-03-2013, 02:38 PM.

    #2
    Hi Edward,

    Thank you for posting.

    When using the managed approach with Target and Stop, these will be orders placed at the exchange from the strategy.

    Below is a link on where your orders reside and will help clarify the orders and OCO of your orders.

    http://www.ninjatrader.com/support/f...7076#post27076

    The fees will be dependent on the broker that you have and would need to contact your broker for that information.

    Please let me know if I can be of further assistance.
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Thank you. By the way can you give me example on how to submit a target and stop of an entry. I am using an Unmanaged approach in submitting my entry. I have this code but I have some confusions on what will be the order type when submitting a stop and target.


      Submit stop for a long entry:

      stop1Order = SubmitOrder(0, OrderAction.Sell, OrderType.Stop, 1, 0, execution.Order.AvgFillPrice - (20* TickSize), "st1", "long entry");
      stop2Order = SubmitOrder(0, OrderAction.Sell, OrderType.Stop, 1, 0, execution.Order.AvgFillPrice - (20* TickSize), "st2", "long entry");
      stop3Order = SubmitOrder(0, OrderAction.Sell, OrderType.Stop, 1, 0, execution.Order.AvgFillPrice - (20* TickSize), "st3", "long entry");

      But for submitting target I am confused with it could you give me a sample of it? Thanks in advance

      Comment


        #4
        Edward,

        It looks like you are on the right path.

        A Stop Loss is a Stop Limit order type and Profit Target is a limit order type.

        Stop Loss order -
        Code:
        SubmitOrder(0, OrderAction.Sell, OrderType.StopLimit, 1, 0, execution.Order.AvgFillPrice - (20* TickSize), "st1", "long entry");
        Profit Target -
        Code:
        SubmitOrder(0, OrderAction.Sell, OrderType.Limit, 1, 0, execution.Order.AvgFillPrice + (20* TickSize), "st1", "Entry");
        Cal H.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by judysamnt7, 03-13-2023, 09:11 AM
        4 responses
        59 views
        0 likes
        Last Post DynamicTest  
        Started by ScottWalsh, Today, 06:52 PM
        4 responses
        36 views
        0 likes
        Last Post ScottWalsh  
        Started by olisav57, Today, 07:39 PM
        0 responses
        7 views
        0 likes
        Last Post olisav57  
        Started by trilliantrader, Today, 03:01 PM
        2 responses
        21 views
        0 likes
        Last Post helpwanted  
        Started by cre8able, Today, 07:24 PM
        0 responses
        10 views
        0 likes
        Last Post cre8able  
        Working...
        X