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 Hwop38, 05-04-2026, 07:02 PM
    0 responses
    154 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    306 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    244 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    345 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    176 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X