using System;
using System.Collections.Generic;
using System.Text;
namespace CryptoExchange.Net.SharedApis
{
///
/// Price direction for trigger order
///
public enum SharedTriggerPriceDirection
{
///
/// Trigger when the price goes below the specified trigger price
///
PriceBelow,
///
/// Trigger when the price goes above the specified trigger price
///
PriceAbove
}
}