You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Greetings;
I want to set Symbol by string;
Example = Symbol sym = "BTCUSDT";
but push error this update.
How to fix it?
Need set from string asset or symbol. And very useful.
The text was updated successfully, but these errors were encountered:
@turgayacar, the implicit conversion of string to Symbol was replaced with Symbol.Cache.Get() in 0.2.0-beta4 (issue #89) and a cache abstraction layer was added.
So, Symbol sym = "BTCUSDT"; is now Symbol sym = Symbol.Cache.Get("BTCUSDT");
The code is not as concise, but it resolves #89 and makes it clear that the Symbol is being pulled from the cache.
Greetings;
I want to set Symbol by string;
Example = Symbol sym = "BTCUSDT";
but push error this update.
How to fix it?
Need set from string asset or symbol. And very useful.
The text was updated successfully, but these errors were encountered: