Show / Hide Table of Contents

Class TickTable

Inheritance
object
TickTable
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public class TickTable

Constructors

TickTable(ulong)

Declaration
public TickTable(ulong id)
Parameters
Type Name Description
ulong id

Properties

Id

Declaration
public ulong Id { get; }
Property Value
Type Description
ulong

Methods

AddRow(int, decimal, decimal)

Declaration
public void AddRow(int price, decimal dprice, decimal tickSize)
Parameters
Type Name Description
int price
decimal dprice
decimal tickSize

GetMinTickSize()

Declaration
public decimal GetMinTickSize()
Returns
Type Description
decimal

GetRows()

Declaration
public List<TickTableRow> GetRows()
Returns
Type Description
List<TickTableRow>

GetTickSize(decimal)

Declaration
public decimal GetTickSize(decimal price)
Parameters
Type Name Description
decimal price
Returns
Type Description
decimal

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()
In this article
Back to top