sync
This commit is contained in:
24
SignalsTestCmd/Brian.cs
Normal file
24
SignalsTestCmd/Brian.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
} }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user