mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
12 lines
517 B
C#
12 lines
517 B
C#
|
|
namespace MtApi
|
||
|
|
{
|
||
|
|
public enum EnumObjectPropertyDouble
|
||
|
|
{
|
||
|
|
OBJPROP_PRICE = 20, // Price coordinate
|
||
|
|
OBJPROP_LEVELVALUE = 204, // Level value
|
||
|
|
OBJPROP_SCALE = 12, // Scale (properties of Gann objects, Fibonacci Arcs and Ellipse)
|
||
|
|
OBJPROP_ANGLE = 13, // Angle. For the objects with no angle specified, created from a program, the value is equal to EMPTY_VALUE
|
||
|
|
OBJPROP_DEVIATION = 16, // Deviation for the Standard Deviation Channel
|
||
|
|
}
|
||
|
|
}
|