MtApi5: Moving some functions to new core

This commit is contained in:
Viacheslav Demydiuk
2024-01-14 21:57:07 +02:00
parent 931dc82524
commit caac11cdad
14 changed files with 344 additions and 327 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace MtApi5.MtProtocol
{
public class MtTick
{
public double Bid { get; set; } // Current Bid price
public double Ask { get; set; } // Current Ask price
public long Time { get; set; } // Time of the last prices update
public double Last { get; set; } // Price of the last deal (Last)
public ulong Volume { get; set; } // Volume for the current Last price
public double VolumeReal { get; set; } // Volume for the current Last price with greater accuracy
}
}