-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathIMarketBot.cs
More file actions
53 lines (42 loc) · 1.09 KB
/
IMarketBot.cs
File metadata and controls
53 lines (42 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System.Collections.Generic;
using System.Threading.Tasks;
using Binance.Net.Objects.Models.Spot;
using BinanceBot.Market.Domain;
namespace BinanceBot.Market;
/// <summary>
/// Market Bot Interface
/// </summary>
public interface IMarketBot
{
/// <summary>
/// Symbol
/// </summary>
MarketSymbol Symbol { get; }
/// <summary>
/// Run bot
/// </summary>
Task RunAsync();
/// <summary>
/// Stop bot
/// </summary>
void Stop();
/// <summary>
/// Validate connection w/ stock
/// </summary>
Task ValidateServerTimeAsync();
/// <summary>
/// Get currently opened orders
/// </summary>
/// <param name="symbol"></param>
Task<IEnumerable<BinanceOrder>> GetOpenedOrdersAsync(string symbol);
/// <summary>
/// Create new order
/// </summary>
/// <param name="order"></param>
Task<BinancePlacedOrder> CreateOrderAsync(CreateOrderRequest order);
/// <summary>
/// Cancel orders
/// </summary>
/// <param name="orders"></param>
Task CancelOrdersAsync(IEnumerable<BinanceOrder> orders);
}