Libraries: CSeries Class

 

CSeries Class:

CSeries class is a low latency container made for the purpose of collecting ticks and working further with them. It allows user to access ticks in the same way like he would access OHLC (Open High Low Close) bar prices. Index "0" marks the newest container member (newest price collected).

CSeries class constantly keeps in memory a particular number of last ticks. If number of ticks collected exceed the allowed container size, the oldest ticks are discarded while leaving newest ticks in the container.

Furthermore, user can easily calculate significant measures, like moving average, standard deviation or z score using inbuilt container functions. This class can be used according to various needs, it can be used for the purpose of collecting other measurements as well.

Author: Simonas Aukscionis

Reason: