PINE LIBRARY

xor logical operator

1 399
Library "xor"

xor(a, b)
  xor: Exclusive or, or exclusive disjunction is a logical operation that is true if and only if its arguments differ (one is true, the other is false).
  Parameters:
    a: first argument
    b: second argument
  Returns: returns xor (true only if a and b are true, but not both)

Example:

true xor true = false
true xor false = true
false xor true = true
false xor false = false

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.