Class: Fcoin::EndPoint::MarketTask
- Inherits:
-
Thor
- Object
- Thor
- Fcoin::EndPoint::MarketTask
- Defined in:
- lib/fcoin/cli/endpoint/market_task.rb
Instance Method Summary collapse
-
#candles ⇒ JSON
Returns candles info of symbol specified by resolution.
-
#depth ⇒ JSON
Returns depth info of symbol specified by level.
-
#ticker ⇒ JSON
Returns ticker info of symbol.
-
#trades ⇒ JSON
Returns trades info of symbol.
Instance Method Details
#candles ⇒ JSON
Returns candles info of symbol specified by resolution.
curl: GET api.fcoin.com/v2/market/candles/$resolution/$symbol
82 |
# File 'lib/fcoin/cli/endpoint/market_task.rb', line 82 desc 'candles', 'Returns candles info of symbol specified by resolution' |
#depth ⇒ JSON
Returns depth info of symbol specified by level.
40 |
# File 'lib/fcoin/cli/endpoint/market_task.rb', line 40 desc 'depth', 'Returns depth info of symbol specified by level' |
#ticker ⇒ JSON
Returns ticker info of symbol.
curl: GET api.fcoin.com/v2/market/ticker/$symbol
19 |
# File 'lib/fcoin/cli/endpoint/market_task.rb', line 19 desc 'ticker', 'Returns ticker info of symbol' |
#trades ⇒ JSON
Returns trades info of symbol.
curl: GET api.fcoin.com/v2/market/trades/$symbol
61 |
# File 'lib/fcoin/cli/endpoint/market_task.rb', line 61 desc 'trades', 'Returns trades info of symbol' |