934128cfa0
* Binance Brokerage skeleton * Market hours * Implement Symbol Mapper - known symbols available on /api/v1/exchangeInfo - fiat currencies are pegged * Implement GetCashBalance * Implement GetAccountHoldings - there are no pre-existing currency swaps - cash balances are pulled and stored in the cashbook * Implement GetOpenOrders * Manage orders: PlaceOrder * Manage orders: UpdateOrder Update operation is not supported * Manage orders: CancelOrder * Messaging: order book * Messaging: trades * Messaging: combine streams - connect to fake /ws/open channel on init - case by channel name, but not event type * Messaging: order depth updates - ticker symbol is not enough as it pushes updates only once a second, this would be a very incomplete data stream - fetch ticker snapshot if lastUpdateId == 0 - follow Binance instructions for keeping local orderbook fresh * Messaging: user data streaming - Request userDataStream endpoint to get listenKey - keep listenkey alive - handle order close event - handle order fill event * DataDownloader: get history - we can aggregate minute candles for higher resolutions * fix data stream * Tests: FeeModel tests * Tests: base brokerage tests * Tests: download history * Tests: symbol mapper * Support StopLimit andd StopMarket orders * StopMarket orders disabled Take profit and Stop loss orders are not supported for any symbols (tested with BTCUSDT, ETHUSDT) * Tests: StopLimit order * Tests: crypto parsing * Reissue user data listen key * comment custom currency limitation * rework websocket connections * implement delayed subscription * adapt ignore message * add license banner * use better suited exception type * avoid message double parsing * support custom fee values * extract BinanceApiClient to manage the request/response between lean and binance * use api events to invoke brokerage events * do not allow to terminate session if it wasn't allocated. * update binance exchange info * tool to add or update binance exchange info * ExchangeInfo basic test * Rebase + Resharp * Binance brokerage updates - Fix sign bug in sell order fills - Fix bug in GetHistory - Remove duplicate symbol from symbol properties db * Remove unused code * Revert removal of account currency check * Update symbols properties database * Address review * Address review - Upgrade API endpoints from v1 to v3 - Updated sub/unsub for new subscription manager - Subscribe best bid/ask quotes instead of full order book - Added handling of websocket error messages - Cleanup + refactor * Update symbol properties database * Remove list from symbol mapper * Fix symbol mapper tests * Address review - Fix resubscribe after reconnect - Fix quote tick edge case * Fix EnsureCurrencyDataFeed for non-tradeable currencies * Fix check in EnsureCurrencyDataFeed * Reuse base class subscribe on reconnect Co-authored-by: Adalyat Nazirov <aenazirov@gmail.com> Co-authored-by: Martin-Molinero <martin@quantconnect.com>
93 lines
3.6 KiB
C#
93 lines
3.6 KiB
C#
/*
|
|
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
|
|
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
using QuantConnect.Configuration;
|
|
using QuantConnect.Data.Market;
|
|
using QuantConnect.Logging;
|
|
using QuantConnect.Util;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace QuantConnect.ToolBox.BinanceDownloader
|
|
{
|
|
public static class BinanceDownloaderProgram
|
|
{
|
|
/// <summary>
|
|
/// Primary entry point to the program.
|
|
/// </summary>
|
|
public static void DataDownloader(IList<string> tickers, string resolution, DateTime fromDate, DateTime toDate)
|
|
{
|
|
if (resolution.IsNullOrEmpty() || tickers.IsNullOrEmpty())
|
|
{
|
|
Console.WriteLine("BinanceDownloader ERROR: '--tickers=' or '--resolution=' parameter is missing");
|
|
Console.WriteLine("--tickers=eg BTCUSD");
|
|
Console.WriteLine("--resolution=Minute/Hour/Daily/All");
|
|
Environment.Exit(1);
|
|
}
|
|
try
|
|
{
|
|
var allResolutions = resolution.Equals("all", StringComparison.OrdinalIgnoreCase);
|
|
var castResolution = allResolutions ? Resolution.Minute : (Resolution)Enum.Parse(typeof(Resolution), resolution);
|
|
|
|
// Load settings from config.json
|
|
var dataDirectory = Config.Get("data-folder", "../../../Data");
|
|
|
|
using (var downloader = new BinanceDataDownloader())
|
|
{
|
|
foreach (var ticker in tickers)
|
|
{
|
|
// Download the data
|
|
var startDate = fromDate;
|
|
var symbol = downloader.GetSymbol(ticker);
|
|
var data = downloader.Get(symbol, castResolution, fromDate, toDate);
|
|
var bars = data.Cast<TradeBar>().ToList();
|
|
|
|
// Save the data (single resolution)
|
|
var writer = new LeanDataWriter(castResolution, symbol, dataDirectory);
|
|
writer.Write(bars);
|
|
|
|
if (allResolutions)
|
|
{
|
|
// Save the data (other resolutions)
|
|
foreach (var res in new[] { Resolution.Hour, Resolution.Daily })
|
|
{
|
|
var resData = downloader.AggregateBars(symbol, bars, res.ToTimeSpan());
|
|
|
|
writer = new LeanDataWriter(res, symbol, dataDirectory);
|
|
writer.Write(resData);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
catch (Exception err)
|
|
{
|
|
Log.Error(err);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Endpoint for downloading exchange info
|
|
/// </summary>
|
|
public static void ExchangeInfoDownloader()
|
|
{
|
|
new ExchangeInfoUpdater(new BinanceExchangeInfoDownloader())
|
|
.Run();
|
|
}
|
|
}
|
|
}
|