This commit is contained in:
2025-01-05 18:53:32 +08:00
parent 0bb4c5a486
commit 5cd509161b
50 changed files with 8732 additions and 0 deletions

24
SignalsTestCmd/Brian.cs Normal file
View 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;
} }
}
}