-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d4a04c
commit 82263d1
Showing
4 changed files
with
46 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,25 @@ | ||
let getticker = Ticker.getticker | ||
let getmarkets = Public.getmarkets | ||
let markets = Public.markets | ||
|
||
let getboard = Public.getboard | ||
let board = Public.board | ||
|
||
let getticker = Public.getticker | ||
let ticker = Public.ticker | ||
|
||
let getexecutions = Public.getexecutions | ||
let executions = Public.executions | ||
|
||
let getboardstate = Public.getboardstate | ||
|
||
let gethealth = Public.gethealth | ||
|
||
let getchats = Public.getchats | ||
|
||
let getbalance = Assets.getbalance | ||
|
||
let sendchildorder = Trade.sendchildorder | ||
let me_sendchildorder = Trade.sendchildorder | ||
|
||
let getchildorders = Trade.getchildorders | ||
let me_getchildorders = Trade.getchildorders | ||
|
||
let getexecutions = Trade.getexecutions | ||
let me_getexecutions = Trade.getexecutions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,30 @@ | ||
open Common | ||
|
||
val getticker : product_code -> Ticker.response Lwt.t | ||
val getmarkets : Json.t Lwt.t | ||
val markets : Json.t Lwt.t | ||
|
||
val getboard : product_code -> Json.t Lwt.t | ||
val board : product_code -> Json.t Lwt.t | ||
|
||
val getexecutions : product_code -> Json.t Lwt.t | ||
val executions : product_code -> Json.t Lwt.t | ||
|
||
val getboardstate : product_code -> Json.t Lwt.t | ||
|
||
val gethealth : product_code -> string Lwt.t | ||
|
||
val getchats : product_code -> Json.t Lwt.t | ||
|
||
val getticker : product_code -> Public.ticker Lwt.t | ||
val ticker : product_code -> Public.ticker Lwt.t | ||
|
||
val getbalance : Auth.t -> Assets.balance list Lwt.t | ||
|
||
val sendchildorder : | ||
val me_sendchildorder : | ||
Auth.t -> product_code -> order_type -> side -> float -> Json.t Lwt.t | ||
|
||
val getchildorders : | ||
val me_getchildorders : | ||
Auth.t -> product_code -> Trade.order list Lwt.t | ||
|
||
val getexecutions : | ||
val me_getexecutions : | ||
Auth.t -> product_code -> Trade.execution list Lwt.t |
This file was deleted.
Oops, something went wrong.