|
@@ -4339,11 +4339,11 @@ namespace OASystem.API.OAMethodLib
|
|
|
if (liveRate == null) continue;
|
|
|
|
|
|
var currRate = (rowthRate * liveRate.Rate).TruncDecimals(4);
|
|
|
- if (rowthRate > currRate)
|
|
|
+ if (cacheRate.Rate > currRate)
|
|
|
{
|
|
|
isSendMsg = true;
|
|
|
//>团组归属:<font color='info'>{groupName}</font>
|
|
|
- msgContent.Append($">- {cacheRate.CurrencyName}:存储汇率超过实时汇率,请注意!!!(存储汇率:{rowthRate.ToString("#0.0000")} 聚合API实时汇率:{currRate.ToString("#0.0000")}(已计算涨幅比例1.0350))");
|
|
|
+ msgContent.AppendLine($">- {cacheRate.CurrencyName}:存储汇率超过实时汇率,请注意!!!(存储汇率:{cacheRate.Rate.ToString("#0.0000")} 聚合API实时汇率:{currRate.ToString("#0.0000")}(已计算涨幅比例1.0350))");
|
|
|
}
|
|
|
}
|
|
|
return (isSendMsg, msgContent.ToString());
|