Skip to content

Tick

Summary

Represents the Tick object.

Signature

1
public sealed struct Tick : ValueType

Namespace

cAlgo.API

See Also

Methods

Equals (2)

Equals (1 of 2)

Summary

Returns True if two Ticks are equal otherwise False

Signature

1
public bool Equals(Tick other)

Parameters

Name Type Description
other Tick The other tick to compare with current tick

Return Value

bool

Equals (2 of 2)

Summary

Returns True if two Ticks are equal otherwise False

Signature

1
public bool Equals(object obj)

Parameters

Name Type Description
obj object The other object to compare with current object

Return Value

bool

GetHashCode

Summary

Returns the Tick object hash code

Signature

1
public int GetHashCode()

Return Value

int

ToString

Summary

Returns string representation of a Tick

Signature

1
public string ToString()

Return Value

string

Properties

Time

Summary

Gets the Tick time.

Signature

1
public DateTime Time {get;}

Return Value

DateTime

Bid

Summary

Gets the Bid price of tick.

Signature

1
public double Bid {get;}

Return Value

double

Ask

Summary

Gets the Ask price of tick.

Signature

1
public double Ask {get;}

Return Value

double