Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

entering orders in another market

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

    entering orders in another market

    Hi what function would I use to enter a limit order in another market?

    for example I'd like to buy CL 03-18 @ 64.35 and sell CL 04-18 @ 64.24 simultaneously.

    Thanks,

    #2
    Hello brucelevy,

    Thanks for your post.

    If, for example, CL 03-18 is your chart and you apply your script to CL 03-18 then in your script you would need to add CL 04-18 as an added data series. This means the CL 03-18 (as the chart bars) would be referenced to BarsInProgress 0 and CL 04-18 would be referenced as CL 04-18.

    You can then use the entry order method overload that specified the bars in progress. Here is one method overload from the helpguide:

    EnterLongLimit(int barsInProgressIndex, bool liveUntilCancelled, int quantity, double limitPrice, string signalName)

    Using the example above and your examples you could use:

    if (your conditions to enter)
    {
    EnterLongLimit(0, true, 1, 64.35, "long entry on CL 03-18"); // BarsInProgress = 0
    EnterShortLimit(1, true, 1, 64.24, "Short on CL 04-18"); // BarsInProgress = 1
    }


    References:
    Please see "Entering, Exiting and Retrieving Position Information " in https://ninjatrader.com/support/help...nstruments.htm
    Please see "Working with a Multi-Instrument Strategy" in https://ninjatrader.com/support/help...r_handling.htm
    You can find the entry method overloads here: https://ninjatrader.com/support/help...er_methods.htm
    Paul H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by adeelshahzad, Today, 03:54 AM
    4 responses
    20 views
    0 likes
    Last Post adeelshahzad  
    Started by merzo, 06-25-2023, 02:19 AM
    10 responses
    823 views
    1 like
    Last Post NinjaTrader_ChristopherJ  
    Started by frankthearm, Today, 09:08 AM
    5 responses
    15 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Started by jeronymite, 04-12-2024, 04:26 PM
    3 responses
    43 views
    0 likes
    Last Post jeronymite  
    Started by yertle, Today, 08:38 AM
    5 responses
    16 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Working...
    X