You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: coding_conventions/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ plot(signal, color = color.orange)
88
88
Constants are variables whose value will not change during script execution. Use all caps snake case for constants, and declare them using the `var` keyword so they are only initialized when the script executes at bar zero, when [``barstate.isfirst``](https://www.tradingview.com/pine-script-reference/v4/#var_barstate{dot}isfirst) is true. Example:
89
89
90
90
```js
91
-
// ———————————————————— Constants, global arrays and inputs {
0 commit comments