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

com.ddfplus.service.definition.DefinitionService Maven / Gradle / Ivy

There is a newer version: 1.1.7
Show newest version
package com.ddfplus.service.definition;

/*
 * Lookups instrument metadata from Barchart's: http://extras.ddfplus.com
 */
public interface DefinitionService {

	/**
	 * Will start a background refresh of the symbol cache.
	 * 
	 * @param intervalSec
	 *            Interval in seconds.
	 */
	void init(Long intervalSec);

	String[] getAllFutureSymbols(String root);

	String getFuturesMonthSymbol(String root, int month);

	String[] getAllOptionsSymbols(String root);

	String[] getAllOptionsMonthYearSymbols(String root, String monthYear);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy