Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Unique Tags for Drawing/Text Objects

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

    Unique Tags for Drawing/Text Objects

    Do you have a function for creating these? If not, I would like to recommend adding one to the API. I created this one which works for me:

    Code:
     
    private string GetUniqueTag()
    {
         return Guid.NewGuid().ToString();
    }

    #2
    You can create unique tags just by adding CurrentBar to your tag string.

    "name" + CurrentBar
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Unique Tags

      Actually, the whole point of my request is for things that I don't care to name. For those mundane text and objects that I don't care to track, I prefer to just set it to something guaranteed to be unique. Your suggestion makes me have to "think" and it convolutes the code. It creates additional complexity because in an indicator/strategy that has a lot of drawings/text, I could inadvertently use the same "name" + currentbar and create some debugging headaches. Something like a simple method guaranteed to be unique is "fire and forget".

      Frankly, I would prefer you to overload all your methods and drop the tag, but I thought that was asking for too much. That is why I suggested something simpler.

      Hopefully you see the difference.
      Last edited by moflaherty; 11-29-2008, 11:50 AM. Reason: typo

      Comment


        #4
        Thank you for the suggestion. I will forward it to development.
        Josh P.NinjaTrader Customer Service

        Comment


          #5
          You already answered your question, just using GUID, no even need to wrap it in a method...

          DrawLine(Guid.NewGuid().ToString()....)
          RayNinjaTrader Customer Service

          Comment


            #6
            ?

            It wasn't a question--just a suggestion.

            {sigh}

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Mestor, 03-10-2023, 01:50 AM
            16 responses
            387 views
            0 likes
            Last Post z.franck  
            Started by rtwave, 04-12-2024, 09:30 AM
            4 responses
            31 views
            0 likes
            Last Post rtwave
            by rtwave
             
            Started by yertle, Yesterday, 08:38 AM
            7 responses
            29 views
            0 likes
            Last Post yertle
            by yertle
             
            Started by bmartz, 03-12-2024, 06:12 AM
            2 responses
            22 views
            0 likes
            Last Post bmartz
            by bmartz
             
            Started by funk10101, Today, 12:02 AM
            0 responses
            7 views
            0 likes
            Last Post funk10101  
            Working...
            X