diff --git a/docs/content/appendices/price_formats.md b/docs/content/appendices/price_formats.md index f26c8fb..cff7fa8 100644 --- a/docs/content/appendices/price_formats.md +++ b/docs/content/appendices/price_formats.md @@ -20,16 +20,14 @@ const handleMarketUpdate = (event) => { connection.on(SubscriptionType.MarketUpdate, 'AAPL', handleMarketUpdate) ``` -The same is true for [`Quote`](/content/sdk/lib-marketstate?id=quote) class. - -> Recall the Quote class is used to track the current state of an instrument. It mutates to reflect new information as market data messages are received. Read more in the [Key Concepts: Data Structures](/content/concepts/data_structures?id=quotes). - -Many instance properties of a ```Quote``` class are numbers. Here are a few examples: +The same is true for [`Quote`](/content/sdk/lib-marketstate?id=quote) class. Many instance properties of a ```Quote``` class are numbers. Here are a few examples: * [lastPrice](/content/sdk/lib-marketstate?id=quotelastprice) * [bidPrice](/content/sdk/lib-marketstate?id=quotebidprice) * [bidSize](/content/sdk/lib-marketstate?id=quotebidsize) +> Recall the Quote class is used to track the current state of an instrument. It mutates to reflect new information as market data messages are received. Read more in the [Key Concepts: Data Structures](/content/concepts/data_structures?id=quotes). + ## Decimal Formatting Generally speaking, we convert numbers for presentation purposes. This is a very common practice. In most cases, we simply restrict the number of decimal places that are shown. Sometimes, special characters, like commas, are used to separate thousands. In other cases, parenthesis may be used to represent negative values. @@ -226,10 +224,3 @@ Obviously, ambiguity is introduced because the denominator is not shown. It is i ## Formatting Functions - - - - - - - diff --git a/docs/content/releases/5.17.1.md b/docs/content/releases/5.17.1.md new file mode 100644 index 0000000..7ee5d88 --- /dev/null +++ b/docs/content/releases/5.17.1.md @@ -0,0 +1,4 @@ +**Other** + +* Updated documentation, making minor corrections. +* Added [Appendix: Price Formats](https://docs.barchart.com/marketdata-api-js/#/content/appendices/price_formats) documentation, including extensive discussion of fractional tick formatting of prices. \ No newline at end of file