Skip to content

Commit

Permalink
Version 2.49 (2021-01-03)
Browse files Browse the repository at this point in the history
  - [3.5]  Added OutputFormat parameter to report results in cell/struct/table/timetable formats
  - [5.*]  Fixed certain problems with parallel download of historic data (Pro license)
  - [12.1] Added display of context (input parameters, caller location) in case of run-time error
  • Loading branch information
altmany committed Jan 3, 2021
1 parent 7f58c82 commit b207bf0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions IQML.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
% RaiseErrorMsgs (Logical) default=1 or true; if true or 1, IQFeed error messages raise a Matlab error in blocking query
% UseParallel (Logical) default=0 or false; if true or 1, a blocking query will be parallelized (Pro license only)
% MaxWorkers (Integer) default=inf; maximal numer of parallel workers to use in parallelized queries (UseParallel=true)
% OutputFormat (String) default='struct'; one of 'struct','cells','table','timetable'
%
% Quotes/ticks:
% DataType (String) default='quotes'; either 'quotes' or 'trades'
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.49 (2021-01-03)
- [3.5] Added OutputFormat parameter to report results in cell/struct/table/timetable formats
- [5.*] Fixed certain problems with parallel download of historic data (Pro license)
- [12.1] Added display of context (input parameters, caller location) in case of run-time error

2.48 (2020-12-02)
- [*.*] Fixed bug when trying to display PDF documents on MacOS
- [*.*] Fixed edge-case when retrieving data in parallel with UseParallel (Pro license)
Expand Down
3 changes: 2 additions & 1 deletion functionSignatures.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
{"name":"Timeout", "kind":"namevalue", "type":"numeric", "purpose":"max # of seconds to wait for blocking query (0=infinite; default=5)"},
{"name":"MsgParsingLevel", "kind":"namevalue", "type":["numeric","integer", "choices={0,1,2}"], "purpose":"parsing level of IQFeed msgs (default=2=maximal)"},
{"name":"ProcessFunc", "kind":"namevalue", "type":["struct","function_handle"], "purpose":"callback function of IQFeed msgs"},
{"name":"RaiseErrorMsgs", "kind":"namevalue", "type":["logical","scalar"], "purpose":"Matlab error upon IQFeed error? (default=true)"}
{"name":"RaiseErrorMsgs", "kind":"namevalue", "type":["logical","scalar"], "purpose":"Matlab error upon IQFeed error? (default=true)"},
{"name":"OutputFormat", "kind":"namevalue", "type":["char","string", "choices={'cells','struct','table','timetable'}"], "purpose":"Results data format (default=struct)"}
]
},
"IQML":
Expand Down

0 comments on commit b207bf0

Please sign in to comment.