summaryrefslogtreecommitdiff
path: root/tda.h
diff options
context:
space:
mode:
Diffstat (limited to 'tda.h')
-rw-r--r--tda.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/tda.h b/tda.h
new file mode 100644
index 0000000..8a0dcaf
--- /dev/null
+++ b/tda.h
@@ -0,0 +1,20 @@
+#ifndef TDA_H
+#define TDA_H
+
+#include "assets.h"
+#include "quotes.h"
+
+extern char *tda_refresh_token;
+
+struct tda_session {
+ char *client_id, *account_id, *access_token, *refresh_token;
+};
+
+struct tda_session *tda_init(const char *, const char *, const char *);
+void tda_cleanup(struct tda_session *);
+int tda_load_assets(struct tda_session *, struct asset **assets);
+
+int tda_get_quote_symbols(struct asset **assets, int n, char **bufptr);
+int tda_get_quotes(struct tda_session *, const char *, struct quote ***);
+
+#endif