mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
11 lines
267 B
C#
Executable File
11 lines
267 B
C#
Executable File
namespace MtApi
|
|
{
|
|
static class ExtensionMethods
|
|
{
|
|
public static MtQuote Convert(this MTApiService.MtQuote quote)
|
|
{
|
|
return (quote != null) ? new MtQuote(quote.Instrument, quote.Bid, quote.Ask) : null;
|
|
}
|
|
}
|
|
}
|