The idea is to find the average daily volume in NOK regardless of the stock's base currency

I am attempting to extract the average volume on screen, but converted into Norwegian Krone based on the currency of each individual stock's base currency. I tried the following, but it did not work: ShowVar(@Pricevolume2,AvgVol(91)*PRICE*FXRate) //

The idea is to find the average daily volume in NOK regardless of the stock's base currency.

What solution is available here?

You can use the recently introduced FX series to convert from the model's currency to NOK.

For a model set to USD, #USDNOK can be used directly:
Close(0, #USDNOK)
For a model set to EUR, a ratio must be used:
Close(0, #USDNOK) / Close(0, #USDEUR)

Use multiplication to convert to NOK.