Package org.knowm.xchange.gemini.v2
Interface Gemini2
-
@Path("v2") @Produces("application/json") public interface Gemini2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GeminiCandle[]
getCandles(String symbol, String time_frame)
GeminiTicker2
getTicker(String symbol)
-
-
-
Method Detail
-
getCandles
@GET @Path("candles/{symbol}/{time_frame}") GeminiCandle[] getCandles(@PathParam("symbol") String symbol, @PathParam("time_frame") String time_frame) throws IOException, GeminiException
- Throws:
IOException
GeminiException
-
getTicker
@GET @Path("ticker/{symbol}") GeminiTicker2 getTicker(@PathParam("symbol") String symbol) throws IOException, GeminiException
- Throws:
IOException
GeminiException
-
-