We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a0700 commit f461b27Copy full SHA for f461b27
src/main.cpp
@@ -131,7 +131,7 @@ class TestQuoteClient {
131
value symbols = value::array();
132
symbols[0] = value::string(U("AAPL"));
133
symbols[1] = value::string(U("JD"));
134
- value result = quote_client->get_timeline(symbols);
+ value result = quote_client->get_timeline(symbols, false, 1675167178931);
135
ucout << U("result: ") << result << endl;
136
}
137
src/trade_client.cpp
@@ -262,7 +262,7 @@ namespace TIGER_API {
262
if (!seg_type.empty()) {
263
obj[P_SEG_TYPE] = value::string(seg_type);
264
265
- return post(FILLED_ORDERS, obj)[P_ITEMS];
+ return post(INACTIVE_ORDERS, obj)[P_ITEMS];
266
267
268
value
0 commit comments