Add start and enddate when fetching the position history
This commit is contained in:
@@ -24,6 +24,12 @@ namespace Managing.Application.Abstractions.Services
|
||||
|
||||
Task<GasFeeData> GetGasFeeDataAsync();
|
||||
|
||||
Task<List<Position>> GetGmxPositionHistoryAsync(string account, int pageIndex = 0, int pageSize = 20, string? ticker = null);
|
||||
Task<List<Position>> GetGmxPositionHistoryAsync(
|
||||
string account,
|
||||
int pageIndex = 0,
|
||||
int pageSize = 20,
|
||||
string? ticker = null,
|
||||
DateTime? fromDate = null,
|
||||
DateTime? toDate = null);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user