com.quotemedia.streamer.client.mapper.IVGreeksMsgImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of streamerclient-java-core Show documentation
Show all versions of streamerclient-java-core Show documentation
Java streaming client that provides easy-to-use client APIs to connect and subscribe to QuoteMedia's market data streaming services. https://quotemedia.com/
The newest version!
package com.quotemedia.streamer.client.mapper;
import com.quotemedia.streamer.messages.market.DataMessage;
public class IVGreeksMsgImpl implements DataMessage {
private String symbol;
private int locateCode;
private Long lastCalculation;
private Double delta;
private Double gamma;
private Double vega;
private Double rho;
private Double theta;
private Double midIV;
private Double midIVChange;
private Double bidIV;
private Double askIV;
private Double mark;
private Double intrinsicValue;
private Double extrinsicValue;
public String getSymbol() {
return symbol;
}
public void setSymbol(String symbol) {
this.symbol = symbol;
}
public int getLocateCode() {
return locateCode;
}
public void setLocateCode(int locateCode) {
this.locateCode = locateCode;
}
public Long getLastCalculation() {
return lastCalculation;
}
public void setLastCalculation(Long lastCalculation) {
this.lastCalculation = lastCalculation;
}
public Double getDelta() {
return delta;
}
public void setDelta(Double delta) {
this.delta = delta;
}
public Double getGamma() {
return gamma;
}
public void setGamma(Double gamma) {
this.gamma = gamma;
}
public Double getVega() {
return vega;
}
public void setVega(Double vega) {
this.vega = vega;
}
public Double getRho() {
return rho;
}
public void setRho(Double rho) {
this.rho = rho;
}
public Double getTheta() {
return theta;
}
public void setTheta(Double theta) {
this.theta = theta;
}
public Double getMidIV() {
return midIV;
}
public void setMidIV(Double midIV) {
this.midIV = midIV;
}
public Double getMidIVChange() {
return midIVChange;
}
public void setMidIVChange(Double midIVChange) {
this.midIVChange = midIVChange;
}
public Double getBidIV() {
return bidIV;
}
public void setBidIV(Double bidIV) {
this.bidIV = bidIV;
}
public Double getAskIV() {
return askIV;
}
public void setAskIV(Double askIV) {
this.askIV = askIV;
}
public Double getMark() {
return mark;
}
public void setMark(Double mark) {
this.mark = mark;
}
public Double getIntrinsicValue() {
return intrinsicValue;
}
public void setIntrinsicValue(Double intrinsicValue) {
this.intrinsicValue = intrinsicValue;
}
public Double getExtrinsicValue() {
return extrinsicValue;
}
public void setExtrinsicValue(Double extrinsicValue) {
this.extrinsicValue = extrinsicValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy