41 lines
1.1 KiB
Markdown
41 lines
1.1 KiB
Markdown
# ChartYOnDropped
|
||
|
||
Returns the Y coordinateof the chart point the Expert Advisor or script has been dropped to.
|
||
|
||
```
|
||
int ChartYOnDropped();
|
||
|
||
```
|
||
|
||
Return Value
|
||
|
||
The Y coordinate value.
|
||
|
||
Note
|
||
|
||
Y axis direction from top to bottom.
|
||
|
||
Example:
|
||
|
||
```
|
||
//+------------------------------------------------------------------+
|
||
//| Script program start function |
|
||
//+------------------------------------------------------------------+
|
||
void OnStart()
|
||
{
|
||
//--- get and print the X and Y coordinates of the chart point the script was dropped into using the mouse
|
||
int x=ChartXOnDropped();
|
||
int y=ChartYOnDropped();
|
||
PrintFormat("Script dropped to coordinates X = %d, Y = %d", x, y);
|
||
/*
|
||
result:
|
||
Script dropped to coordinates X = 429, Y = 114
|
||
*/
|
||
}
|
||
|
||
```
|
||
|
||
See also
|
||
|
||
[ChartWindowOnDropped](/en/docs/chart_operations/chartwindowondropped), [ChartPriceOnDropped](/en/docs/chart_operations/chartpriceondropped), [ChartTimeOnDropped](/en/docs/chart_operations/charttimeondropped)
|