App: only take one instrument on the commandline
This commit is contained in:
@ -93,9 +93,9 @@ public class App {
|
|||||||
|
|
||||||
options.addOption(Option.builder("i")
|
options.addOption(Option.builder("i")
|
||||||
.longOpt("instrument")
|
.longOpt("instrument")
|
||||||
.argName("EUR_USD [USD_CAD ...]")
|
.argName("EUR_USD")
|
||||||
.required(false)
|
.required(false)
|
||||||
.hasArgs()
|
.hasArg()
|
||||||
.desc("Live security to stream. In the format \"EUR_USD\".")
|
.desc("Live security to stream. In the format \"EUR_USD\".")
|
||||||
.valueSeparator(',')
|
.valueSeparator(',')
|
||||||
.build());
|
.build());
|
||||||
|
|||||||
Reference in New Issue
Block a user