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 yertle, Yesterday, 08:38 AM
    7 responses
    28 views
    0 likes
    Last Post yertle
    by yertle
     
    Started by bmartz, 03-12-2024, 06:12 AM
    2 responses
    20 views
    0 likes
    Last Post bmartz
    by bmartz
     
    Started by funk10101, Today, 12:02 AM
    0 responses
    4 views
    0 likes
    Last Post funk10101  
    Started by gravdigaz6, Yesterday, 11:40 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by MarianApalaghiei, Yesterday, 10:49 PM
    3 responses
    10 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Working...
    X