====Property Pattern==== The //PropertyPattern// algorithm is used to detect a specific pattern across one or more inputs. For example, a sudden drop, quick rise, peak or trough. ===Usage=== This algorithm is used for any number of inputs. For a simple threshold alert, you would use a single point. For more complex scenarios, you'd add additional points. ===Parameters=== ^Parameter^Meaning^ |pattern|An or (|) delimited list of comparisons that define your pattern. There should be one comparison for each input| |invert|If **true** or **1**, the output of the algorithm is reversed.| ===Comparison Format=== The //pattern// contains a list of comparisons, each separated by an vertical-bar (|) symbol. Each comparison is a symbol (=, > or <) followed by a value. For example, if you had a two inputs you could have the following pattern... **>0.5|<0.5** The PropertyPattern algorithm would return '1' when the first input is //greater// than 0.5 and the second input is //less// than 0.5.