Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Is there any problem with caches on NinjaScript??

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

    Is there any problem with caches on NinjaScript??

    int[] numeros={0,1};
    int[4,2] matriz= new int[4,2];

    was programming this code and after compiling it throws an error that I cant declare the lenght of an array in a declaration, ok then I change the code to:

    int[] numeros={0,1};
    int[,] matriz= new int[4,2];

    Now the compilation is succesfull so I add another line (yes Im a begginer) and this time I forgot to CAP the first random on the declaration:

    int[] numeros={0,1};
    int[,] matriz= new int[4,2];
    random rnd = new Random();

    But it throws 2 errors, one referring that he cant find "random" (missing cap) and other that was the same as before (and now has been corrected and the code is fine).

    This is fustrating seems to be some issue with the cache, can I correct this anyhow or is it just a bug in the program?

    Of course after I only change the Random first letter to a CAP it compiles correctly:

    int[] numeros={0,1};
    int[,] matriz= new int[4,2];
    Random rnd = new Random();

    #2
    Hello Luis,

    Thank you for your post.

    I have seen the same item many times myself. Closing and re-opening the file in through Tools > Edit NinjaScript > Indicator/Strategy will resolve this matter.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    647 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    369 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    108 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    572 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    573 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X