WatchedValue object is returned by some methods of the Trading Terminal. Using this object you can get/set some value and be notified when the value is changed.
Returns current value.
Sets new value. Readonly WatchedValue object doesn't have this method.
callback
is a function to be called when the value is changedoptions
is an object with the following properties:once
- if it is set to true then the callback will be executed only oncecallWithLast
- if it is set to true then the callback will be executed with the previous value (if available)
Use the same function that you used in the subscribe
function to unsubscribe from the updates.