datetiem WindowTimeOnDropped( )
Returns the time part of the chart point where expert or script was dropped. This value is only valid if the expert or script was dropped by mouse.
エキスパート、あるいはスクリプトがドロップされたチャート ポイントの時刻部分を返します。エキスパート、あるいはスクリプトがマウスによってドロップされた場合にのみ、この値は有効になります。
Note: For custom indicators, this value is undefined.
注意: カスタム インディケータは、この値は未定義です。
Sample:
サンプル:
1 2 3 4 5 6 7 8 | double drop_price=WindowPriceOnDropped(); datetime drop_time=WindowTimeOnDropped(); //---- may be undefined (zero) if(drop_time>0) { ObjectCreate("Dropped price line", OBJ_HLINE, 0, drop_price); ObjectCreate("Dropped time line", OBJ_VLINE, 0, drop_time); } |