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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    149 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    84 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    129 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    125 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    102 views
    0 likes
    Last Post CarlTrading  
    Working...
    X