TickAggregationType Enumeration |
Indicates how tick portfolio indicator need data to be aggregated.
Namespace:
FinAnalysis.Base
Assembly:
FinAnalysis.Base (in FinAnalysis.Base.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
Syntax public enum TickAggregationType
Members
| Member name | Value | Description |
---|
| AggregateLast | 0 |
Just store last incoming trade price.
Summarize all volumes.
|
| AggregateAverage | 1 |
Store average of all incoming trade prices on period.
Summarize all volumes.
|
| AggregateMin | 2 |
Store minimum of all incoming trade prices on period.
Summarize all volumes.
|
| AggregateMax | 3 |
Store maximum of all incoming trade prices on period.
Summarize all volumes.
|
| AggregateNone | 4 |
Do not aggregate. Just call update as soon as tick coming.
|
See Also