Back to project page StockTicker.
The source code is released under:
MIT License
If you think the Android project StockTicker listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.premnirmal.ticker.model; /*from w w w.j a v a 2s . c o m*/ import com.github.premnirmal.ticker.network.historicaldata.History; import com.jjoe64.graphview.series.DataPoint; import java.util.List; import rx.Observable; /** * Created by premnirmal on 12/30/14. */ public interface IHistoryProvider { Observable<History> getHistory(String ticker); Observable<DataPoint[]> getDataPoints(String ticker); }