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 jclose, Today, 09:37 PM
    0 responses
    4 views
    0 likes
    Last Post jclose
    by jclose
     
    Started by WeyldFalcon, 08-07-2020, 06:13 AM
    10 responses
    1,413 views
    0 likes
    Last Post Traderontheroad  
    Started by firefoxforum12, Today, 08:53 PM
    0 responses
    10 views
    0 likes
    Last Post firefoxforum12  
    Started by stafe, Today, 08:34 PM
    0 responses
    10 views
    0 likes
    Last Post stafe
    by stafe
     
    Started by sastrades, 01-31-2024, 10:19 PM
    11 responses
    169 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Working...
    X