For the complete documentation index, see llms.txt. This page is also available as Markdown.

Is NaN

Learn how to use the Is NaN function in Origami Tech to check for missing or invalid numeric values, ensuring data accuracy in trading scripts.

is_nan(decimal) -> bool

Returns bool

True if input Nan and False if input not Nan

Example:

is_nan(Nan)true

is_nan(1.1)false

Last updated