mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-16 10:53:08 +00:00
Shared exchange functionality (#214)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
namespace CryptoExchange.Net.SharedApis
|
||||
{
|
||||
/// <summary>
|
||||
/// Position mode
|
||||
/// </summary>
|
||||
public enum SharedPositionMode
|
||||
{
|
||||
/// <summary>
|
||||
/// Hedge mode, a symbol can have both a long and a short position at the same time
|
||||
/// </summary>
|
||||
HedgeMode,
|
||||
/// <summary>
|
||||
/// One way mode, a symbol can only have one open position side at a time
|
||||
/// </summary>
|
||||
OneWay
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user