Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Creating Unique OCO Strings Intrabar

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

    Creating Unique OCO Strings Intrabar

    Hello staff,

    I would like to create a unique OCO string while also trading intrabar with Calculate.OnPriceChange, which means that "CurrentBar" can not be used here to have a unique OCO string every time. What are some tricks that you know of that I could use in this scenario?

    I'm looking forward to your reply.

    #2
    Hello GLFX005,

    Thanks for your post.

    Great question. Here is what you can use to cover both historical and realtime:

    if (State == State.Historical)
    oco = DateTime.Now.ToString() + CurrentBar + "entry";
    else
    oco = GetAtmStrategyUniqueId() + "entry";

    Where oco is declared as a private string.

    Reference: https://ninjatrader.com/support/help...gyuniqueid.htm

    Comment


      #3
      Hello Paul, thank you for your reply.

      Is this something I can use even if I don't care about historical backtest data? I'm using my strategy for live forward trading only.
      Does the "GetAtmStrategyUniqueId()" stay the same throughout the time the strategy is loaded on my chart? And does the ID reset when I reload the Ninjascript?

      I've been using this as a solution for my problem so far to make sure that the string is unique for each bar but also for each trade inside a bar:
      ("Q1" + CurrentBar + SystemPerformance.AllTrades.Count)

      But I guess that adding the "GetAtmStrategyUniqueId()" is going to become beneficial when trading multiple of the same strategies on the same chart.

      I am looking forward to your reply.

      Comment


        #4
        Hello GLFX005,

        Thanks for your reply.

        The method "GetAtmStrategyUniqueId()" will provide a unique ID each time it is called. If you are only running realtime, that is what we would suggest using.
        I wasn't very clear in my previous post, that code would be used in OnBarUpdate()

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by NullPointStrategies, Today, 05:17 AM
        0 responses
        38 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        124 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        64 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        41 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        46 views
        0 likes
        Last Post TheRealMorford  
        Working...
        X