Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

add new SymbolFilter fields #335

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@ public class SymbolFilter {
*/
private String limit;

// percent_price
private String multiplierUp;

private String multiplierDown;

private Integer avgPriceMins;

private Boolean applyToMarket;

public FilterType getFilterType() {
return filterType;
}
Expand Down Expand Up @@ -157,4 +166,36 @@ public String getLimit() {
public void setLimit(String limit) {
this.limit = limit;
}

public String getMultiplierUp() {
return multiplierUp;
}

public void setMultiplierUp(String multiplierUp) {
this.multiplierUp = multiplierUp;
}

public String getMultiplierDown() {
return multiplierDown;
}

public void setMultiplierDown(String multiplierDown) {
this.multiplierDown = multiplierDown;
}

public Integer getAvgPriceMins() {
return avgPriceMins;
}

public void setAvgPriceMins(Integer avgPriceMins) {
this.avgPriceMins = avgPriceMins;
}

public boolean getApplyToMarket(){
return applyToMarket;
}

public void setApplyToMarket(boolean applyToMarket) {
this.applyToMarket = applyToMarket;
}
}