Why does ObjectDescription only require one parameter?

 
ObjectDescription takes one input-the name of an object. What if I have multiple objects, each on different charts, with the same name? How do I distinguish them?
 
Same name but distinguishable. Example: obj1, obj2 and so on.
 
ObjectDescription will return the description text from the chart that the expert is attached to
 
1mathboy1:
ObjectDescription takes one input-the name of an object. What if I have multiple objects, each on different charts, with the same name? How do I distinguish them?
string description=ObjectGetString(chartID,objname,OBJ_TEXT);
 
angevoyageur:

Thanks! didn't know that function existed haha
Reason: