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 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