com.fluxtion.server.lib.pnl.refdata.Instrument Maven / Gradle / Ivy
/*
* SPDX-FileCopyrightText: © 2024 Gregory Higgins
* SPDX-License-Identifier: AGPL-3.0-only
*/
package com.fluxtion.server.lib.pnl.refdata;
public record Instrument(String instrumentName, double defaultUsdRate) {
public Instrument(String instrumentName) {
this(instrumentName, Double.NaN);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy