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 techgetgame, Yesterday, 11:42 PM
    0 responses
    8 views
    0 likes
    Last Post techgetgame  
    Started by sephichapdson, Yesterday, 11:36 PM
    0 responses
    2 views
    0 likes
    Last Post sephichapdson  
    Started by bortz, 11-06-2023, 08:04 AM
    47 responses
    1,613 views
    0 likes
    Last Post aligator  
    Started by jaybedreamin, Yesterday, 05:56 PM
    0 responses
    10 views
    0 likes
    Last Post jaybedreamin  
    Started by DJ888, 04-16-2024, 06:09 PM
    6 responses
    20 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Working...
    X