0
我有2個格拉法納價格指標(數據源:石墨)顯示something
以2種不同貨幣EUR
和PLN
的價格。我想顯示這2個指標中的maxSeries
,但在比較它們之前,我需要將貨幣轉換爲常見貨幣。我使用divideSeries
,PLN
度量的貨幣兌換度量,將其轉換爲EUR
。格拉法納/石墨 - max系列#A和#B
我的問題是,我不能在同樣的方式使用maxSeries
以2個參數,像maxSeries(#A,#C)
你可以通過#B
作爲參數divideSeries
。它根本無法正常工作。
我的指標:
#A - stats.gauges.something.EUR.price.removeAbovePercentile(5)
#B - stats.gauges.currency.EURPLN
#C - stats.gauges.something.PLN.price.divideSeries(#B)
#D - maxSeries(#A,#C) <---- desired output
當我使用maxSeries
上通配符查詢列出多個指標,例如爲:stats.gauges.*.EUR.price.maxSeries()
它工作正常。在我的例子中,我需要先做一些轉換,所以我不能簡單地使用通配符。
我該如何做到這一點?