1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-15 18:33:06 +00:00
This commit is contained in:
Jan Korf
2022-01-19 22:07:22 +01:00
parent fe31cf156d
commit 3cf5480cad
4 changed files with 183 additions and 11 deletions
@@ -1,4 +1,7 @@
using System;
using ConsoleClient.Models;
using CryptoExchange.Net.Objects;
using CryptoExchange.Net.Sockets;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -9,5 +12,9 @@ namespace ConsoleClient.Exchanges
public interface IExchange
{
Task<decimal> GetPrice(string symbol);
Task<IEnumerable<OpenOrder>> GetOpenOrders();
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);
}
}