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 Brevo, Today, 01:45 AM
    0 responses
    6 views
    0 likes
    Last Post Brevo
    by Brevo
     
    Started by aussugardefender, Today, 01:07 AM
    0 responses
    3 views
    0 likes
    Last Post aussugardefender  
    Started by pvincent, 06-23-2022, 12:53 PM
    14 responses
    242 views
    0 likes
    Last Post Nyman
    by Nyman
     
    Started by TraderG23, 12-08-2023, 07:56 AM
    9 responses
    384 views
    1 like
    Last Post Gavini
    by Gavini
     
    Started by oviejo, Today, 12:28 AM
    0 responses
    6 views
    0 likes
    Last Post oviejo
    by oviejo
     
    Working...
    X