Returns a value of minimal change.
SYNTAX
public double MinChange { get; }
EXAMPLE
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Drawing; using PTLRuntime.NETScript; namespace InterestExamples { public class InterestExamples : NETStrategy { public override void OnQuote() { Asset[] ass=Asset.GetAllAssets(); Print(ass[0].Interest.ToString()); } } }