Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Expression and NT8

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

    Expression and NT8

    Does NT8 use expression like 'a:=max(scrc, nz(a[1]) + nz(a[1]) - b[1])/length' for signals.Thanks

    #2
    Hello Emma1,

    NinjaScript uses C# language which does have variable assignments. In what you provided it appears that the variable "a" is being assigned the value of the equation behind it. A simple example of a similar use case in C# would be:

    Code:
    double a = Math.Max(Close[0], High[0]) - Low[0]; 
    Print(a);
    That would be taking the max between the close and high and subtracting the low. You can use any C# math as an equation and assign it to a variable like this.


    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    64 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    94 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    50 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    108 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    63 views
    0 likes
    Last Post PaulMohn  
    Working...
    X