Distance Measure

Overview


Distance




If the close is higher than the open, then
{% distance = (open - low) + (high-low) + (high-close) %}
otherwise
{% distance = (high-open) + (high - low) + (close-low) %}

Contents