Files
mql5-skills/skills/mql5/references/docs/01-constants/0093-constants-objectconstants-enum-object.md
T
2026-06-23 21:47:51 +08:00

53 lines
2.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Object Types
When a graphical object is created using the [ObjectCreate()](/en/docs/objects/objectcreate) function, it's necessary to specify the type of object being created, which can be one of the values of the ENUM_OBJECT enumeration. Further specifications of object [properties](/en/docs/constants/objectconstants/enum_object_property) are possible using functions for working with [graphical objects](/en/docs/objects).
ENUM_OBJECT
| ID | | Description |
| --- | --- | --- |
| OBJ_VLINE | | Vertical Line |
| OBJ_HLINE | | Horizontal Line |
| OBJ_TREND | | Trend Line |
| OBJ_TRENDBYANGLE | | Trend Line By Angle |
| OBJ_CYCLES | | Cycle Lines |
| OBJ_ARROWED_LINE | | Arrowed Line |
| OBJ_CHANNEL | | Equidistant Channel |
| OBJ_STDDEVCHANNEL | | Standard Deviation Channel |
| OBJ_REGRESSION | | Linear Regression Channel |
| OBJ_PITCHFORK | | Andrews Pitchfork |
| OBJ_GANNLINE | | Gann Line |
| OBJ_GANNFAN | | Gann Fan |
| OBJ_GANNGRID | | Gann Grid |
| OBJ_FIBO | | Fibonacci Retracement |
| OBJ_FIBOTIMES | | Fibonacci Time Zones |
| OBJ_FIBOFAN | | Fibonacci Fan |
| OBJ_FIBOARC | | Fibonacci Arcs |
| OBJ_FIBOCHANNEL | | Fibonacci Channel |
| OBJ_EXPANSION | | Fibonacci Expansion |
| OBJ_ELLIOTWAVE5 | | Elliott Motive Wave |
| OBJ_ELLIOTWAVE3 | | Elliott Correction Wave |
| OBJ_RECTANGLE | | Rectangle |
| OBJ_TRIANGLE | | Triangle |
| OBJ_ELLIPSE | | Ellipse |
| OBJ_ARROW_THUMB_UP | | Thumbs Up |
| OBJ_ARROW_THUMB_DOWN | | Thumbs Down |
| OBJ_ARROW_UP | | Arrow Up |
| OBJ_ARROW_DOWN | | Arrow Down |
| OBJ_ARROW_STOP | | Stop Sign |
| OBJ_ARROW_CHECK | | Check Sign |
| OBJ_ARROW_LEFT_PRICE | | Left Price Label |
| OBJ_ARROW_RIGHT_PRICE | | Right Price Label |
| OBJ_ARROW_BUY | | Buy Sign |
| OBJ_ARROW_SELL | | Sell Sign |
| OBJ_ARROW | | Arrow |
| OBJ_TEXT | | Text |
| OBJ_LABEL | | Label |
| OBJ_BUTTON | | Button |
| OBJ_CHART | | Chart |
| OBJ_BITMAP | | Bitmap |
| OBJ_BITMAP_LABEL | | Bitmap Label |
| OBJ_EDIT | | Edit |
| OBJ_EVENT | | The "Event" object corresponding to an event in the economic calendar |
| OBJ_RECTANGLE_LABEL | | The "Rectangle label" object for creating and designing the custom graphical interface. |