Skip to content

Commit b6542ea

Browse files
authored
HelpText Correction (#516)
* Correct HelpText with examples with work * revert unintended change
1 parent 02b009d commit b6542ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ExchangeSharpConsole/Options/ExportOption.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace ExchangeSharpConsole.Options
1313
"This can take a long time depending on your sinceDateTime parameter.\n" +
1414
"Please note that not all exchanges will let you do this and may ban your IP if you try to grab to much data at once. " +
1515
"I've added sensible sleep statements to limit request rates.\n" +
16-
"Example: export -e gemini --since 20150101 -s btcusd -o \"./data/gemini\"")]
16+
"Example: export -e gemini --since 2015-01-01 -s btcusd -p \"./data/gemini\"")]
1717
public class ExportOption : BaseOption, IOptionPerExchange, IOptionPerMarketSymbol, IOptionWithIO,
1818
IOptionWithStartDate
1919
{

src/ExchangeSharpConsole/Options/TradeHistoryOption.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace ExchangeSharpConsole.Options
99
{
1010
[Verb("trade-history", HelpText = "Print trade history from an Exchange to output.\n" +
11-
"Example: trade-history -e Binance -s btcusdt --since \"20180517\" --to \"20180518\"")]
11+
"Example: trade-history -e Binance -s btcusdt --since \"2018-05-17\" --to \"2018-05-18\"")]
1212
public class TradeHistoryOption : BaseOption, IOptionPerExchange, IOptionPerMarketSymbol, IOptionWithStartDate,
1313
IOptionWithEndDate
1414
{

0 commit comments

Comments
 (0)