Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/JKorf/Binance.Net
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Aug 24, 2020
2 parents a8cc186 + bd3b811 commit d090d2d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Binance.Net/Converters/SymbolStatusConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ public SymbolStatusConverter(bool quotes) : base(quotes) { }
new KeyValuePair<SymbolStatus, string>(SymbolStatus.Halt, "HALT"),
new KeyValuePair<SymbolStatus, string>(SymbolStatus.PostTrading, "POST_TRADING"),
new KeyValuePair<SymbolStatus, string>(SymbolStatus.PreTrading, "PRE_TRADING"),
new KeyValuePair<SymbolStatus, string>(SymbolStatus.Trading, "TRADING")
new KeyValuePair<SymbolStatus, string>(SymbolStatus.Trading, "TRADING"),
new KeyValuePair<SymbolStatus, string>(SymbolStatus.Close, "CLOSE")
};
}
}
6 changes: 5 additions & 1 deletion Binance.Net/Enums/SymbolStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ public enum SymbolStatus
/// <summary>
///
/// </summary>
Break
Break,
/// <summary>
///
/// </summary>
Close
}
}

0 comments on commit d090d2d

Please sign in to comment.