Click or drag to resize

Range Class

Range for signals/filters decision tree.
Inheritance Hierarchy
SystemObject
  MZpack.NT8.AlgoRange

Namespace:  MZpack.NT8.Algo
Assembly:  MZpack.NT8.Pro (in MZpack.NT8.Pro.dll) Version: 3.18.1.0 (3.18.1.0)
Syntax
C#
public class Range

The Range type exposes the following members.

Constructors
  NameDescription
Public methodRange
Initializes a new instance of the Range class
Top
Properties
  NameDescription
Public propertyBars
Number of consecutive bars in which all signals must be validated. 0 means no bars range.
Public propertyLogic
Logic to validate components of the range. AND is default logic.
Public propertyTicks
Number of ticks of the price in which all signals must be validated. 0 means no price range.
Top
Methods
  NameDescription
Public methodIsInRange
Checks if parameters are in the range.
Top
Examples
Creates a range
C#
Range range = new Range() { Bars = 10, Ticks = 8 }
See Also