Prices, in the Framework.Instruments collection, do not automatically update. You do not automatically receive new prices for all available markets in the platform.
You need to request prices which you are interested in, using
// Request EUR/USD
Framework.RequestPrices(["EUR/USD"]);
// Replace with request for EUR/USD and GBP/USD
Framework.RequestPrices(["GBP/USD", "EUR/USD"]);
If you only want the price for a single instrument, you can pass a string as the parameter, rather than an array:
// Single request, as a string rather than an array
Framework.RequestPrices("EUR/USD");
You can receive the prices either by listening for PRICE updates in the main OnMessage handler, or by defining a specific OnPriceChange handler.
You can also make a specific one-off request for the latest price on a market, using
Framework.GetLatestPrice("EUR/USD", function (Msg) {
// Same as a PRICE message: contains a quotes[] array with the single, requested market
});
If the framework has already been asked to collect prices for this market from the broker server, the response back to your asynchronous function will be nearly instant because the framework already has the latest price. If not, the framework will request the price from the broker server and then issue a more delayed callback to your function.
Using