Skip to content

Commit

Permalink
Fix exception during funding (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
arodus authored Nov 6, 2023
1 parent 2ec4892 commit dbfb055
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions QuantConnect.BybitBrokerage/Models/Enums/OrderType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
* limitations under the License.
*/

using System.Runtime.Serialization;

namespace QuantConnect.BybitBrokerage.Models.Enums;

/// <summary>
Expand All @@ -28,5 +30,10 @@ public enum OrderType
/// <summary>
/// Limit order
/// </summary>
Limit
}
Limit,

/// <summary>
/// Unknown. Used in funding trade executions
/// </summary>
[EnumMember(Value = "UNKNOWN")] Unknown,
}

0 comments on commit dbfb055

Please sign in to comment.