* Follow up on Heatmap Bug with Multi-Currency Watchlist
@ 2025-08-18 17:08 Ammar Faizi
2025-08-19 14:18 ` Vignesh Kumar Nadar (BLOOMBERG/ 731 LEX)
2025-08-20 21:34 ` Follow " Alviro Iskandar Setiawan
0 siblings, 2 replies; 4+ messages in thread
From: Ammar Faizi @ 2025-08-18 17:08 UTC (permalink / raw)
To: Vignesh Kumar Nadar (731 Lexington Avenue), Emma Demers,
Srishti Sharma
Cc: Tanya Kureishi, Serena Chang, Alviro Iskandar Setiawan, gwml
Hi Vignesh, Emma, Srishti,
It was nice to meet you guys. Thanks for the Zoom meeting.
This is the follow up on the heatmap bug.
The bug occurs when a watchlist includes assets priced in different
currencies. Below is a step-by-step reproduction of the bug:
1) Create a new watchlist with USD as the base currency.
2) Add the following trades:
- Buy 1 Ethereum (XETUSD:CUR) at price 4,000 USD.
- Buy 1 Bitcoin (XBTUSD:CUR) at price 116,000 USD.
- Buy 100 USD (USDIDR:CUR) at price 16,000 IDR (Indonesian Rupiah).
In this scenario, Bitcoin should be my largest holding in USD terms.
However, the heatmap incorrectly displays USDIDR as the largest holding,
despite its value being only 100 USD.
I think a heatmap tile is now calculated by multiplying the number
of shares with the current price without caring about the currency
difference. That's probably the problematic part.
For now, the heatmap feature in the watchlist section completely messes
my visual up and not much useful because of this bug.
To be more specific for the Engineering team, I've included a JSON
payload for the watchlist creation endpoint:
HTTP POST
https://login.bloomberg.com/watchlist-service/create/36DBC7EAF256426ABFB0F8F8D21B2A98
{
"portMeta": {
"name": "ABC",
"currency": "USD",
"isDefault": false
},
"holdings": [
{
"security": "XETUSD:CUR",
"buydate": 1755534614182,
"shares": 1,
"buyprice": 4000,
"torder": 0
},
{
"security": "XBTUSD:CUR",
"buydate": 1755534575189,
"shares": 1,
"buyprice": 116000,
"torder": 1
},
{
"security": "USDIDR:CUR",
"buydate": 1755534551554,
"shares": 100,
"buyprice": 16000,
"torder": 2
}
]
}
Let me know if you need further details to resolve this issue.
Thank you!
Best regards,
--
Ammar Faizi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re:Follow up on Heatmap Bug with Multi-Currency Watchlist
2025-08-18 17:08 Follow up on Heatmap Bug with Multi-Currency Watchlist Ammar Faizi
@ 2025-08-19 14:18 ` Vignesh Kumar Nadar (BLOOMBERG/ 731 LEX)
2025-08-20 21:34 ` Follow " Alviro Iskandar Setiawan
1 sibling, 0 replies; 4+ messages in thread
From: Vignesh Kumar Nadar (BLOOMBERG/ 731 LEX) @ 2025-08-19 14:18 UTC (permalink / raw)
To: ammarfaizi2
Cc: tkureishi, schang394, edemers8, ssharma1074, alviro.iskandar,
gwml
[-- Attachment #1: Type: text/plain, Size: 2684 bytes --]
Hi Ammar
It was great talking to you at the user interview yesterday.Thanks for flagging and sharing detailed reproduction steps along with JSON payload.
This is very helpful.
In the meantime, we'll keep you posted as we investigate further and let you know
once we have a fix.
Best,
Vignesh
From: ammarfaizi2@gnuweeb.org At: 08/18/25 13:08:27 UTC-4:00To: Vignesh Kumar Nadar (BLOOMBERG/ 731 LEX ) , Emma Demers (BLOOMBERG/ NEWSROOM/ ) , Srishti Sharma (BLOOMBERG/ 731 LEX )
Cc: Tanya Kureishi (BLOOMBERG/ NEWSROOM/ ) , Serena Chang (BLOOMBERG/ 731 LEX ) , alviro.iskandar@gnuweeb.org, gwml@vger.gnuweeb.org
Subject: Follow up on Heatmap Bug with Multi-Currency Watchlist
Hi Vignesh, Emma, Srishti,
It was nice to meet you guys. Thanks for the Zoom meeting.
This is the follow up on the heatmap bug.
The bug occurs when a watchlist includes assets priced in different
currencies. Below is a step-by-step reproduction of the bug:
1) Create a new watchlist with USD as the base currency.
2) Add the following trades:
- Buy 1 Ethereum (XETUSD:CUR) at price 4,000 USD.
- Buy 1 Bitcoin (XBTUSD:CUR) at price 116,000 USD.
- Buy 100 USD (USDIDR:CUR) at price 16,000 IDR (Indonesian Rupiah).
In this scenario, Bitcoin should be my largest holding in USD terms.
However, the heatmap incorrectly displays USDIDR as the largest holding,
despite its value being only 100 USD.
I think a heatmap tile is now calculated by multiplying the number
of shares with the current price without caring about the currency
difference. That's probably the problematic part.
For now, the heatmap feature in the watchlist section completely messes
my visual up and not much useful because of this bug.
To be more specific for the Engineering team, I've included a JSON
payload for the watchlist creation endpoint:
HTTP POST
https://login.bloomberg.com/watchlist-service/create/36DBC7EAF256426ABFB0F8F8D21
B2A98
{
"portMeta": {
"name": "ABC",
"currency": "USD",
"isDefault": false
},
"holdings": [
{
"security": "XETUSD:CUR",
"buydate": 1755534614182,
"shares": 1,
"buyprice": 4000,
"torder": 0
},
{
"security": "XBTUSD:CUR",
"buydate": 1755534575189,
"shares": 1,
"buyprice": 116000,
"torder": 1
},
{
"security": "USDIDR:CUR",
"buydate": 1755534551554,
"shares": 100,
"buyprice": 16000,
"torder": 2
}
]
}
Let me know if you need further details to resolve this issue.
Thank you!
Best regards,
--
Ammar Faizi
[-- Attachment #2: Type: text/html, Size: 5385 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Follow up on Heatmap Bug with Multi-Currency Watchlist
2025-08-18 17:08 Follow up on Heatmap Bug with Multi-Currency Watchlist Ammar Faizi
2025-08-19 14:18 ` Vignesh Kumar Nadar (BLOOMBERG/ 731 LEX)
@ 2025-08-20 21:34 ` Alviro Iskandar Setiawan
2025-08-20 21:45 ` Ammar Faizi
1 sibling, 1 reply; 4+ messages in thread
From: Alviro Iskandar Setiawan @ 2025-08-20 21:34 UTC (permalink / raw)
To: Ammar Faizi
Cc: Vignesh Kumar Nadar (731 Lexington Avenue), Emma Demers,
Srishti Sharma, Tanya Kureishi, Serena Chang, gwml
On Tue, Aug 19, 2025 at 12:08 AM Ammar Faizi wrote:
> The bug occurs when a watchlist includes assets priced in different
> currencies. Below is a step-by-step reproduction of the bug:
>
> 1) Create a new watchlist with USD as the base currency.
>
> 2) Add the following trades:
>
> - Buy 1 Ethereum (XETUSD:CUR) at price 4,000 USD.
> - Buy 1 Bitcoin (XBTUSD:CUR) at price 116,000 USD.
> - Buy 100 USD (USDIDR:CUR) at price 16,000 IDR (Indonesian Rupiah).
>
> In this scenario, Bitcoin should be my largest holding in USD terms.
> However, the heatmap incorrectly displays USDIDR as the largest holding,
> despite its value being only 100 USD.
BTW, a temporary solution for this, instead of using USDIDR:CUR, use
USD:CUR. So the adjusted trades will be:
- Buy 1 XETUSD:CUR at 4K USD.
- Buy 1 XBTUSD:CUR at 116K USD.
- Buy 100 USD:CUR at 1 USD.
You can't track your rupiah to US dollar changes though, but at least
it shows the correct heatmap tiles when you have USD in your holding.
I suggest using that temporarily until the Bloomberg Engineering team
fixes the multicurrency issue.
tq
--
Software Engineer & ITPM Officer
Alviro Iskandar Setiawan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Follow up on Heatmap Bug with Multi-Currency Watchlist
2025-08-20 21:34 ` Follow " Alviro Iskandar Setiawan
@ 2025-08-20 21:45 ` Ammar Faizi
0 siblings, 0 replies; 4+ messages in thread
From: Ammar Faizi @ 2025-08-20 21:45 UTC (permalink / raw)
To: Alviro Iskandar Setiawan
Cc: Vignesh Kumar Nadar (731 Lexington Avenue), Emma Demers,
Srishti Sharma, Tanya Kureishi, Serena Chang, gwml
On Thu, Aug 21, 2025 at 04:34:27AM +0700, Alviro Iskandar Setiawan wrote:
> BTW, a temporary solution for this, instead of using USDIDR:CUR, use
> USD:CUR. So the adjusted trades will be:
>
> - Buy 1 XETUSD:CUR at 4K USD.
> - Buy 1 XBTUSD:CUR at 116K USD.
> - Buy 100 USD:CUR at 1 USD.
>
> You can't track your rupiah to US dollar changes though, but at least
> it shows the correct heatmap tiles when you have USD in your holding.
>
> I suggest using that temporarily until the Bloomberg Engineering team
> fixes the multicurrency issue.
Oh, nice. It works. I'll use that temporarily.
Thanks.
--
Ammar Faizi
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-08-20 21:45 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-18 17:08 Follow up on Heatmap Bug with Multi-Currency Watchlist Ammar Faizi
2025-08-19 14:18 ` Vignesh Kumar Nadar (BLOOMBERG/ 731 LEX)
2025-08-20 21:34 ` Follow " Alviro Iskandar Setiawan
2025-08-20 21:45 ` Ammar Faizi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox