double WindowPriceOnDropped( )
返回图表指出的智能交易或脚本价格下滑价格部分。 只有在智能交易、客户指标或脚本应用鼠标的情况下,绑定的值是准确的。注解: 对于客户指标的值是不确定的。
示例:
double drop_price=WindowPriceOnDropped();
datetime drop_time=WindowTimeOnDropped();
//—- 可能未指定 (zero)
if(drop_time>0)
{
ObjectCreate(“价格下滑水平”, OBJ_HLINE, 0, drop_price);
ObjectCreate(“下滑时间”, OBJ_VLINE, 0, drop_time);
}