mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-13 09:23:04 +00:00
18 lines
419 B
C#
18 lines
419 B
C#
namespace CryptoExchange.Net.SharedApis
|
|
{
|
|
/// <summary>
|
|
/// Position mode selection type
|
|
/// </summary>
|
|
public enum SharedPositionModeSelection
|
|
{
|
|
/// <summary>
|
|
/// Position mode is configured per symbol
|
|
/// </summary>
|
|
PerSymbol,
|
|
/// <summary>
|
|
/// Position mode is configured for the entire account
|
|
/// </summary>
|
|
PerAccount
|
|
}
|
|
}
|