GoDigram for .NET Framework and .NET Core
Northwoods.Go.Instruments Namespace / Indicator Class / Quantized Property
In This Topic
    Quantized Property (Indicator)
    In This Topic
    Gets or sets whether the indicator is forced to have discrete values. If true, Value is restricted to values that follow (value - QuantizeBase) mod QuantizeUnit = 0.
    Syntax
    [Category("Behavior")]
    [DefaultValue(false)]
    [Description("Determines whether the indicator forced to have discrete values.")]
    public virtual bool Quantized {get; set;}
    Remarks
    Setting this property does not actually change the Value. If you want to make sure the Value is "quantized" correctly, you will need to set it explicitly.
    See Also