sharp-trading/OrderTarget.cs

9 lines
101 B
C#

using System;
namespace sharp.trading
{
public enum OrderTarget
{
UNKNOWN, MARKET, LIMIT
}
}