Skip to content

ScalePrecision Property

Summary

The price scale precision.

Remarks

The number of decimals displayed on the price scale of the indicator panel

Signature

1
public int ScalePrecision {get; set;}

Return Value

int

Declaring Type

cAlgo.API.IndicatorAttribute

Examples

1
2
3
4
5
6
7
8
 namespace cAlgo.Indicators
 {
     [Indicator(ScalePrecision = 5)] // The scale precision is 5 decimals.
     public class SampleIndicator : Indicator
     {
         //...
     }
 }

Last update: March 23, 2023