1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-18 11:52:54 +00:00

Updated Shared symbol requests/subscriptions to allow multiple symbols in one call if supported

This commit is contained in:
Jkorf
2025-08-04 09:39:30 +02:00
parent ad599badb2
commit 2f82e2015b
11 changed files with 171 additions and 11 deletions
@@ -69,5 +69,11 @@
Name = symbol;
Trading = trading;
}
/// <summary>
/// The SharedSymbol of this symbol
/// </summary>
/// <returns></returns>
public virtual SharedSymbol SharedSymbol => new SharedSymbol(TradingMode, BaseAsset.ToUpperInvariant(), QuoteAsset.ToUpperInvariant()) { SymbolName = Name };
}
}