Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Random Variable

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

    Random Variable

    I am trying to create a variable that returns a random number. Is it possible?

    If possible, how can I manage? I mean: integer or double, from 0 to "n", etc.


    Thanks,
    Carlos

    #2
    Hello CarlosTTW, and thank you for your question.

    Microsoft has included in C# a class called Random, which you can learn more about through their publicly available documentation here, https://msdn.microsoft.com/en-us/lib...em.random.aspx .

    In a pinch, this code will output a random integer between 0 and n.

    Code:
    public static int random0ToN(int n)
    {
      return new Random().Next(0, n < 0 ? n * -1 : n);
    }
    Please let us know if there are any other ways we may help.
    Jessica P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    164 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    318 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    246 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    350 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    179 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X