1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-18 11:52:54 +00:00

Added FTX to console example

This commit is contained in:
Jan Korf
2022-01-20 21:08:51 +01:00
parent 3e23882572
commit 325389cdf8
4 changed files with 104 additions and 2 deletions
@@ -13,6 +13,7 @@ namespace ConsoleClient.Exchanges
{
Task<decimal> GetPrice(string symbol);
Task<IEnumerable<OpenOrder>> GetOpenOrders();
Task<Dictionary<string, decimal>> GetBalances();
Task<WebCallResult> CancelOrder(string symbol, string id);
Task<WebCallResult<string>> PlaceOrder(string symbol, string side, string type, decimal quantity, decimal? price );
Task<UpdateSubscription> SubscribePrice(string symbol, Action<decimal> handler);