feat(derivatives): fix Trade Republic derivative pagination streaming and picker modal
This commit is contained in:
@@ -225,7 +225,13 @@ public class AssetsMqttClient(
|
||||
var req = JsonSerializer.Deserialize(payload, FinlyticJsonSerializerContext.Default.GetDerivativesRequest);
|
||||
if (req != null && !string.IsNullOrEmpty(req.UnderlyingIsin))
|
||||
{
|
||||
return await dbService.GetDerivativesByUnderlyingAsync(req.UnderlyingIsin, req.OptionType, req.ShouldForceRefresh);
|
||||
return await dbService.GetDerivativesByUnderlyingAsync(
|
||||
req.UnderlyingIsin,
|
||||
req.OptionType,
|
||||
req.TargetLeverage,
|
||||
req.After,
|
||||
req.Page,
|
||||
req.ShouldForceRefresh);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
||||
Reference in New Issue
Block a user