Skip to content

Commit e0b0436

Browse files
committed
Version 2.21 (2019-07-14)
- [4.6] Enabled fetching current market summary/scanner (Pro license, IQFeed 6.1) - [4.6] Added predefined 'Top' scanners for AMEX/NYSE/NASDAQ (Pro license) - [5.6] In summary query, Date parameter default value is "now" (previously: yesterday)
1 parent 96eba54 commit e0b0436

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

IQML.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@
5656
% EndFilterTime (String) default='23:59:59'; latest bar time (only relevant if DataType=interval or ticks)
5757
%
5858
% Summary:
59-
% DataType (String) default='snapshot'; one of 'snapshot','fundamental'
59+
% DataType (String) default='snapshot'; one of 'snapshot','fundamental','top'
6060
% SecType (String) default='equity'; one of 'equity','bond','mutual fund',...
61-
% Exchange (String) default='NYSE'; one of 'NYSE','NASDAQ','CBOT',...
61+
% Exchange (String) default='NYSE'; one of 'NYSE','NASDAQ','AMEX','CBOT',...
6262
% ReportEmptyFields (Logical) default=0 or false; if true or 1, empty fields will be reported
6363
% Filter (String or cell-array) list of criteria to filter the returned data
64-
% Date (Integer or String) default=yesterday; end-of-day data for this date (only!) will be fetched
64+
% Date (Integer or String) default=now; end-of-day (or latest) data for this date (only!) will be fetched
6565
%
6666
% Greeks:
6767
% Symbol (String) default=''; e.g., 'IBM1814L116'

IQML.p

1.25 KB
Binary file not shown.

IQML_User_Guide.pdf

-58 KB
Binary file not shown.

changelog.log

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.21 (2019-07-14)
2+
- [4.6] Enabled fetching current market summary/scanner (Pro license, IQFeed 6.1)
3+
- [4.6] Added predefined 'Top' scanners for AMEX/NYSE/NASDAQ (Pro license)
4+
- [5.6] In summary query, Date parameter default value is "now" (previously: yesterday)
5+
16
2.20 (2019-07-10)
27
- [5.6] Added ReportEmptyFields parameter to control summary query results
38
- [5.6] Added scanner functionality (summary query with Filter parameter; Pro license)

functionSignatures.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,16 @@
118118
]
119119
},
120120
"IQML":
121+
{
122+
"inputs":
123+
[
124+
{"name":"action", "kind":"required", "type":["char","string", "choices={'summary'}"], "purpose":"Processing action"},
125+
{"name":"DataType", "kind":"namevalue", "type":["char","string", "choices={'top'}"], "purpose":"Data type to fetch (default=snapshot)"},
126+
{"name":"Exchange", "kind":"namevalue", "type":["char","string", "choices={'NYSE','NASDAQ','AMEX'}"], "purpose":"Exchange to fetch (default=NYSE)"},
127+
{"name":"Filter", "kind":"namevalue", "type":["char","string", "choices={'active','gainers','losers','% gainers','% losers','52-week high','52-week low','volume up','volume spike','VWAP up','VWAP down','VWAP % up','VWAP % down'}"], "purpose":"Filter criteria for reported securities"}
128+
]
129+
},
130+
"IQML":
121131
{
122132
"inputs":
123133
[

0 commit comments

Comments
 (0)