Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/knowm/XChange into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
timmolter committed Dec 1, 2023
2 parents a8dc3c0 + 892e4b7 commit 9af2c14
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public class KrakenFuturesStreamingTickerResponse {
private final BigDecimal openInterest;
private final Date nextFundingRateTime;
private final BigDecimal volumeQuote;
private final BigDecimal markPrice;

public KrakenFuturesStreamingTickerResponse(
@JsonProperty("time") Date time,
Expand All @@ -44,7 +45,8 @@ public KrakenFuturesStreamingTickerResponse(
@JsonProperty("funding_rate_prediction") BigDecimal funding_rate_prediction,
@JsonProperty("openInterest") BigDecimal openInterest,
@JsonProperty("next_funding_rate_time") Date nextFundingRateTime,
@JsonProperty("volumeQuote") BigDecimal volumeQuote) {
@JsonProperty("volumeQuote") BigDecimal volumeQuote,
@JsonProperty("markPrice") BigDecimal markPrice){
this.time = time;
this.feed = feed;
this.product_id = product_id;
Expand All @@ -61,5 +63,6 @@ public KrakenFuturesStreamingTickerResponse(
this.openInterest = openInterest;
this.nextFundingRateTime = nextFundingRateTime;
this.volumeQuote = volumeQuote;
this.markPrice = markPrice;
}
}

0 comments on commit 9af2c14

Please sign in to comment.