- bool ArrowLeftPriceDelete(const long chart_ID=0,
- const string name="LeftPrice")
- {
- ResetLastError();
- if(!ObjectDelete(chart_ID,name))
- {
- Print(__FUNCTION__,
- ": failed to delete the left price label! Error code = ",GetLastError());
- return(false);
- }
- return(true);
- }
复制代码
|