身份标识

标识符是用于用户定义的变量和函数的名称:

  • 它们必须以大写 ( A-Z) 或小写 ( a-z) 字母或下划线 ( _) 开头。
  • 接下来的字符可以是字母、下划线或数字(0-9)。
  • 它们区分大小写。

这里有些例子:

myVar
_myVar
my123Var
functionName
MAX_LEN
max_len
maxLen
3barsDown  // NOT VALID!

Pine Script™样式指南建议对常量使用大写 SNAKE_CASE,对其他标识符使用 camelCase:

GREEN_COLOR = #4CAF50
MAX_LOOKBACK = 100
int fastLength = 7
// Returns 1 if the argument is `true`, 0 if it is `false` or `na`.
zeroOne(boolValue) => boolValue ? 1 : 0
Original text
Rate this translation
Your feedback will be used to help improve Google Translate