All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.barrybecker4.simulation.trading.options.GraphingOptions Maven / Gradle / Ivy

There is a newer version: 1.6.2
Show newest version
/** Copyright by Barry G. Becker, 2015. Licensed under MIT License: http://www.opensource.org/licenses/MIT  */
package com.barrybecker4.simulation.trading.options;

/**
 * Defaults for stock time series generation.
 * A single stock or a collection of stocks can be simulated.
 *
 * @author Barry Becker
 */
public class GraphingOptions {

    private static final int DEFAULT_X_RESOLUTION = 2;
    private static final boolean DEFAULT_USE_LOG_SCALE = false;

    public int xResolution = DEFAULT_X_RESOLUTION;
    public boolean useLogScale = DEFAULT_USE_LOG_SCALE;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy