Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Improvements

  • Added settings value for margin call polling frequency

  • Added Contract Type as search criteria in contract filtering

  • Display 0 instead of empty field when Opening Fee is null in Contract Detail pane

Bugfixes

  • Fix wrong currency shown in pnl in closing contract view when loan leg and security leg in different currencies

SQL Schema Changes

ALTER FUNCTION [dbo].[GetDealType](@symbol NVARCHAR(50))
RETURNS NVARCHAR(50)
BEGIN
RETURN (SELECT TOP 1 d.Name FROM Instruments i JOIN DealTypes d on i.Type = http://d.Id WHERE Symbol = @symbol)
END

GO

ALTER TABLE ForwardContracts DROP COLUMN DealType

GO

ALTER TABLE ForwardContracts ADD DealType NVARCHAR(50) NULL

GO

UPDATE ForwardContracts SET DealType = dbo.GetDealType(Symbol)

GO

  • No labels