Skip to content

Commit

Permalink
Version 2.60 (2021-12-31)
Browse files Browse the repository at this point in the history
  - [*.*] Fixed bug in parsing of default BeginDate parameter value
  - [*.*] Improved reporting of invalid date/time parameter values
  - [8.2] Added settable Fields parameter to option chains query (Pro license)
  • Loading branch information
altmany committed Dec 31, 2021
1 parent 0a52d49 commit c069120
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
5 changes: 3 additions & 2 deletions IQML.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
% Symbols (String :-delimited or cell-array) default=''; e.g., '@VX#' or 'IBM:GOOG' or {'IBM','GOOG'}
% NumOfEvents (Integer) default=inf; max # of IQFeed messages to process in streaming (non-blocking) data mode
% MaxItems (Integer) default=1; size of the reported buffer accumulating the latest streaming quotes/ticks
% Fields (String or cell-array) list of data fields to be reported by IQML (default: 16 fields)
% Fields (String or cell-array) list of data fields to be reported by IQML (default: 16 fields, Pro license only)
% ClearBuffer (Logical) default=0 or false; if true or 1, internal cyclic quotes buffer is cleared when data is returned
% AssignTo (String) default=''; streaming data will be assigned to this variable in the base workspace, updated live
%
Expand Down Expand Up @@ -91,7 +91,7 @@
% EndFilterTime (String) default='23:59:59'; latest bar time (only relevant if DataType=interval or ticks)
% BeginDateTime (Integer or String) default=''; earliest bar date (only relevant if DataType=interval or ticks)
% EndDateTime (Integer or String) default=''; latest bar date (only relevant if DataType=interval or ticks)
% Fields (String or cell-array) list of data fields to be reported by IQML (default: all fields)
% Fields (String or cell-array) list of data fields to be reported by IQML (default: all fields, Pro license only)
% Progress (String) default=''; if 'console', periodic update messages are displayed during data download
%
% News:
Expand Down Expand Up @@ -130,6 +130,7 @@
% MaxStrike (Number) default=[]; only report options having lower strike price; only relevant when DataType='options'.
% NumInMoney (Integer) default=[]; only report this number of options in the money; only relevant if DataType='options'.
% NumOutOfMoney (Integer) default=[]; only report this number of options out of money; only relevant if DataType='options'.
% Fields (String or cell-array) list of data fields to be reported by IQML (default: 16 fields, Pro license only)
%
% Alert:
% Symbols (String :-delimited or cell-array) default=''; e.g., 'FB' or 'IBM:GOOG' or {'IBM','GOOG'}
Expand Down
Binary file modified IQML.p
Binary file not shown.
Binary file modified IQML_User_Guide.pdf
Binary file not shown.
5 changes: 5 additions & 0 deletions changelog.log
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.60 (2021-12-31)
- [*.*] Fixed bug in parsing of default BeginDate parameter value
- [*.*] Improved reporting of invalid date/time parameter values
- [8.2] Added settable Fields parameter to option chains query (Pro license)

2.59 (2021-12-14)
- [*.*] Added new possible formats of date parameters e.g. '21/11/15', 'Nov 15', '15-Nov-2021'
- [2.2] Added 'validate' action: returns true if IQML license is ok, error (or errMsg) if not
Expand Down
3 changes: 2 additions & 1 deletion functionSignatures.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,8 @@
{"name":"NumInMoney", "kind":"namevalue", "type":["numeric"], "purpose":"Only report this # of options in the money (default=[])"},
{"name":"NumOutOfMoney", "kind":"namevalue", "type":["numeric"], "purpose":"Only report this # of options out of money (default=[])"},
{"name":"MaxWorkers", "kind":"namevalue", "type":["numeric","integer",">0"], "purpose":"Max # of parallel workers to use (default=inf)"},
{"name":"UseParallel", "kind":"namevalue", "type":["logical","scalar"], "purpose":"Process data in parallel? (default=false)"}
{"name":"UseParallel", "kind":"namevalue", "type":["logical","scalar"], "purpose":"Process data in parallel? (default=false)"},
{"name":"Fields", "kind":"namevalue", "type":["char","string","cellstr"], "purpose":"Data fields to report"}
]
},
"IQML":
Expand Down

0 comments on commit c069120

Please sign in to comment.