Issue #41: Partialy implemented object functions on client side

This commit is contained in:
DW
2017-09-27 15:38:54 +03:00
parent 486c42685a
commit 7abb4d3b5e
3 changed files with 169 additions and 10 deletions
+14 -1
View File
@@ -657,4 +657,17 @@
}
#endregion // Object Types
}
#region Object Properties
public enum ENUM_OBJECT_PROPERTY_DOUBLE
{
OBJPROP_PRICE = 9, // Price coordinate
OBJPROP_LEVELVALUE = 204, // Level value
OBJPROP_SCALE = 1006, // Scale (properties of Gann objects and Fibonacci Arcs)
OBJPROP_ANGLE = 1007, // Angle. For the objects with no angle specified, created from a program, the value is equal to EMPTY_VALUE
OBJPROP_DEVIATION = 1010 // Deviation for the Standard Deviation Channel
}
#endregion
}