Skip to content

Commit

Permalink
remove: NseMarketDataConverter (QuantConnect#7863)
Browse files Browse the repository at this point in the history
  • Loading branch information
Romazes authored Mar 25, 2024
1 parent 82b327b commit 229caf4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 230 deletions.
11 changes: 4 additions & 7 deletions Configuration/ToolboxArgumentParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,11 @@ public static class ToolboxArgumentParser
+ "/FxcmDownloader or FDL/FxcmVolumeDownload or FVDL/GoogleDownloader or GDL/IBDownloader or IBDL"
+ "/OandaDownloader or ODL"
+ "/AlgoSeekFuturesConverter or ASFC"
+ "/IVolatilityEquityConverter or IVEC/KaikoDataConverter or KDC/NseMarketDataConverter or NMDC"
+ "/IVolatilityEquityConverter or IVEC/KaikoDataConverter or KDC"
+ "/CoarseUniverseGenerator or CUG/\n"
+ "RandomDataGenerator or RDG\n"
+ "Example 1: --app=DDL\n"
+ "Example 2: --app=NseMarketDataConverter\n"
+ "Example 3: --app=RDG"),
+ "Example 2: --app=RDG"),
new CommandLineOption("tickers", CommandOptionType.MultipleValue, "[REQUIRED ALL downloaders] "
+ "--tickers=SPY,AAPL,etc"),
new CommandLineOption("resolution", CommandOptionType.SingleValue, "[REQUIRED ALL downloaders (except CDL) and IVolatilityEquityConverter]"
Expand All @@ -57,10 +56,8 @@ public static class ToolboxArgumentParser
new CommandLineOption("exchange", CommandOptionType.SingleValue, "[REQUIRED for CryptoiqDownloader] [Optional for KaikoDataConverter] The exchange to process, if not defined, all exchanges will be processed."),
new CommandLineOption("date", CommandOptionType.SingleValue, "[REQUIRED for AlgoSeekFuturesConverter, AlgoSeekOptionsConverter, KaikoDataConverter]"
+ "Date for the option bz files: --date=yyyyMMdd"),
new CommandLineOption("source-dir", CommandOptionType.SingleValue, "[REQUIRED for IVolatilityEquityConverter, KaikoDataConverter,"
+ " NseMarketDataConverter]"),
new CommandLineOption("destination-dir", CommandOptionType.SingleValue, "[REQUIRED for IVolatilityEquityConverter, "
+ "NseMarketDataConverter]"),
new CommandLineOption("source-dir", CommandOptionType.SingleValue, "[REQUIRED for IVolatilityEquityConverter, KaikoDataConverter]"),
new CommandLineOption("destination-dir", CommandOptionType.SingleValue, "[REQUIRED for IVolatilityEquityConverter]"),
new CommandLineOption("source-meta-dir", CommandOptionType.SingleValue, "[REQUIRED for IVolatilityEquityConverter]"),
new CommandLineOption("start", CommandOptionType.SingleValue, "[REQUIRED for RandomDataGenerator. Format yyyyMMdd Example: --start=20010101]"),
new CommandLineOption("end", CommandOptionType.SingleValue, "[REQUIRED for RandomDataGenerator. Format yyyyMMdd Example: --end=20020101]"),
Expand Down
214 changes: 0 additions & 214 deletions ToolBox/NseMarketDataConverter/NseMarketDataConverterProgram.cs

This file was deleted.

6 changes: 0 additions & 6 deletions ToolBox/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
using QuantConnect.ToolBox.DukascopyDownloader;
using QuantConnect.ToolBox.IVolatilityEquityConverter;
using QuantConnect.ToolBox.KaikoDataConverter;
using QuantConnect.ToolBox.NseMarketDataConverter;
using QuantConnect.ToolBox.RandomDataGenerator;
using QuantConnect.Util;
using System;
Expand Down Expand Up @@ -106,11 +105,6 @@ var factorFileProvider
GetParameterOrExit(optionsObject, "date"),
GetParameterOrDefault(optionsObject, "exchange", string.Empty));
break;
case "nmdc":
case "nsemarketdataconverter":
NseMarketDataConverterProgram.NseMarketDataConverter(GetParameterOrExit(optionsObject, "source-dir"),
GetParameterOrExit(optionsObject, "destination-dir"));
break;
case "cug":
case "coarseuniversegenerator":
CoarseUniverseGeneratorProgram.CoarseUniverseGenerator();
Expand Down
3 changes: 0 additions & 3 deletions ToolBox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ Example: --app=DukascopyDownloader --tickers=SPY,AAPL --resolution=Daily --from-
- **'--market='** the exchange the data represents.
- **'--tick-type=Quote/Trade'** the tick type being processed. Case insensitive.
- **'--source-dir='** path to the raw Kaiko data.
- NseMarketDataConverter or NMDC
- **'--source-dir='** source directory of unzipped NSE data.
- **'--destination-dir='** directory where Lean Data is located "Lean/Data".
- QuantQuoteConverter or QQC
- **'--source-dir='** directory where your QuantQuote order is extracted.
- **'--destination-dir='** directory where Lean Data is located "Lean/Data".
Expand Down

0 comments on commit 229caf4

Please sign in to comment.