Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Unable to escape whitespace in username

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

    Unable to escape whitespace in username

    Hey, my account name is Foo Bar and I'm trying to define it thusly:

    private readonly string accountName = "Foo Bar";

    There are no errors during compile but the indicator is not in fact recognizing that as a valid account name.

    Using this to designate the sim account works flawlessly:

    private readonly string accountName = "Sim101";

    So the issue is the whitespace. I've tried every combination of escapes and unicode characters I can find and consulted C# documentation extensively, nothing seems to be taking.

    Both examples compile without issues in the NinjaScript editor, but only the Sim101 actually works.

    Note that I've tried this on another production account without a whitespace in the name on a different NinaTrader deployment and it works, so its really quite clear at this point that the only issue is the whitespace.

    Thoughts?

    #2
    Hi lolstockaments, thanks for posting. The Display name might not be the same as the actual name. Print out the string for the Account name and you will use this to initialize the account:

    Code:
    if (State == State.SetDefaults)
    {
        //...
        lock (Account.All)
            foreach(Account a in Account.All)
            {
                Print(a.Name);
            }
    }
    Open a New>NinjaScript Output window then open up the Strategies menu from a chart and look at the listed accounts. Copy/paste the account name into the private readonly string accountName = ""; variable.

    Kind regards,
    -ChrisL

    Comment


      #3
      Worked like an absolute charm, thanks so much Chris, cheers.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      93 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      138 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      123 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      73 views
      0 likes
      Last Post PaulMohn  
      Working...
      X