25 lines
730 B
C#
25 lines
730 B
C#
using BinanceExchange.API.Client;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SignalsTest
|
|
{
|
|
public class Brian
|
|
{
|
|
private static BinanceClient m_client;
|
|
|
|
public static BinanceClient Client { get { if(m_client == null)
|
|
{
|
|
m_client = new BinanceClient(new ClientConfiguration()
|
|
{
|
|
ApiKey = "oYPETR7iNwXEkVTS4DeUSpI9CchTiz7yvQqjls3LDdgnT3sY5pCcTyh4HcQVhLAX",
|
|
SecretKey = "8hZ85QwnGfUItWe288TjQRN3mlDWq3bPUMSsze4nyslaA96OPEUH9r1fwrC9ni7t",
|
|
});
|
|
} return m_client;
|
|
} }
|
|
}
|
|
}
|