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

ogic.fred.client.fred-client-webstart-application.1.0.7-RELEASE.source-code.GetTagsExample2.groovy Maven / Gradle / Ivy

Go to download

This application demonstrates how to use the FRED Client and allows the developer to write custom queries via the FRED Client API.

There is a newer version: 1.0.11-RELEASE
Show newest version
/* This example is written in Groovy script.
 *
 * Note that the api key has been set for you.
 */

import com.coherentlogic.fred.client.core.domain.Tags
import static com.coherentlogic.coherent.data.model.core.util.Utils.using

Date realtimeStart = using (2001, Calendar.JANUARY, 20);
Date realtimeEnd = using (2004, Calendar.MAY, 17);

return queryBuilder
    .series()
    .search()
    .tags()
    .setRealtimeStart(realtimeStart)
    .setRealtimeEnd(realtimeEnd)
    .setSeriesSearchText("monetary service index")
    .doGet(Tags.class);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy