├── .gitignore ├── Debug ├── makefile ├── objects.mk ├── sources.mk ├── src │ ├── execute │ │ └── subdir.mk │ ├── get │ │ └── subdir.mk │ ├── streaming │ │ └── subdir.mk │ └── subdir.mk └── uWebSockets │ └── subdir.mk ├── DynamicDataStore ├── README.md ├── include │ ├── backing_store.h │ ├── common.h │ └── tdma_data_store.h └── src │ ├── backing_store.cpp │ ├── data_store.cpp │ └── logging.cpp ├── LICENSE.txt ├── README.md ├── README_EXECUTE.md ├── README_GET.md ├── README_STREAMING.md ├── Release ├── makefile ├── objects.mk ├── sources.mk ├── src │ ├── execute │ │ └── subdir.mk │ ├── get │ │ └── subdir.mk │ ├── streaming │ │ └── subdir.mk │ └── subdir.mk └── uWebSockets │ └── subdir.mk ├── Release2 └── makefile ├── bin ├── BUILD_NOTES.txt ├── debian-4.19--x86_64--gcc │ └── libTDAmeritradeAPI.so ├── win-x64-msvc │ ├── TDAmeritradeAPI.dll │ ├── TDAmeritradeAPI.exp │ ├── TDAmeritradeAPI.lib │ └── TDAmeritradeAPI.pdb └── win-x86-msvc │ ├── TDAmeritradeAPI.dll │ ├── TDAmeritradeAPI.exp │ ├── TDAmeritradeAPI.lib │ └── TDAmeritradeAPI.pdb ├── cacert.pem ├── include ├── _common.h ├── _execute.h ├── _get.h ├── _streaming.h ├── _tdma_api.h ├── curl_connect.h ├── json.hpp ├── tdma_api_execute.h ├── tdma_api_get.h ├── tdma_api_streaming.h ├── tdma_common.h ├── threadsafe_hashmap.h ├── threadsafe_queue.h ├── util.h └── websocket_connect.h ├── java ├── TDAmeritradeAPI.jar ├── jna.jar ├── json.jar └── src │ └── io │ └── github │ └── jeog │ └── tdameritradeapi │ ├── Auth.java │ ├── CLib.java │ ├── Error.java │ ├── TDAmeritradeAPI.java │ ├── get │ ├── APIGetter.java │ ├── AccountGetterBase.java │ ├── AccountInfoGetter.java │ ├── HistoricalGetterBase.java │ ├── HistoricalPeriodGetter.java │ ├── HistoricalRangeGetter.java │ ├── IndividualTransactionHistoryGetter.java │ ├── InstrumentInfoGetter.java │ ├── MarketHoursGetter.java │ ├── MoversGetter.java │ ├── OptionChainAnalyticalGetter.java │ ├── OptionChainGetter.java │ ├── OptionChainStrategyGetter.java │ ├── OrderGetter.java │ ├── OrdersGetter.java │ ├── PreferencesGetter.java │ ├── QuoteGetter.java │ ├── QuotesGetter.java │ ├── StreamerSubscriptionKeysGetter.java │ ├── TransactionHistoryGetter.java │ └── UserPrincipalsGetter.java │ └── stream │ ├── AcctActivitySubscription.java │ ├── ActivesSubscriptionBase.java │ ├── ChartEquitySubscription.java │ ├── ChartFuturesSubscription.java │ ├── ChartOptionsSubscription.java │ ├── ChartSubscriptionBase.java │ ├── LevelOneForexSubscription.java │ ├── LevelOneFuturesOptionsSubscription.java │ ├── LevelOneFuturesSubscription.java │ ├── ManagedSubscriptionBase.java │ ├── NYSEActivesSubscription.java │ ├── NasdaqActivesSubscription.java │ ├── NewsHeadlineSubscription.java │ ├── OTCBBActivesSubscription.java │ ├── OptionActivesSubscription.java │ ├── OptionsSubscription.java │ ├── QuotesSubscription.java │ ├── RawSubscription.java │ ├── StreamingSession.java │ ├── StreamingSubscription.java │ ├── SubscriptionBySymbolBase.java │ ├── TimesaleEquitySubscription.java │ ├── TimesaleFuturesSubscription.java │ ├── TimesaleOptionsSubscription.java │ └── TimesaleSubscriptionBase.java ├── python ├── setup.py └── tdma_api │ ├── __init__.py │ ├── auth.py │ ├── clib.py │ ├── common.py │ ├── execute.py │ ├── get.py │ └── stream.py ├── src ├── auth.cpp ├── common.cpp ├── curl_connect.cpp ├── error.cpp ├── execute │ ├── execute.cpp │ ├── order_leg.cpp │ └── order_ticket.cpp ├── get │ ├── account.cpp │ ├── get.cpp │ ├── historical.cpp │ ├── instrument_info.cpp │ ├── market_hours.cpp │ ├── movers.cpp │ ├── options.cpp │ └── quotes.cpp ├── streaming │ ├── streaming.cpp │ ├── streaming_session.cpp │ └── streaming_subscriptions.cpp ├── tdma_connect.cpp ├── util.cpp └── websocket_connect.cpp ├── test ├── c │ ├── test.h │ ├── test_exec.c │ ├── test_get.c │ ├── test_main.c │ └── test_streaming.c ├── cpp │ ├── test.h │ ├── test_exec.cpp │ ├── test_get.cpp │ ├── test_main.cpp │ └── test_streaming.cpp ├── java │ └── Test.java ├── python │ └── test.py └── scala │ └── Test.scala ├── tools ├── credential_builder.py ├── creds_from_access_code.py └── get-access-code.html ├── uWebSockets ├── Asio.h ├── Backend.h ├── Epoll.cpp ├── Epoll.h ├── Extensions.cpp ├── Extensions.h ├── Group.cpp ├── Group.h ├── HTTPSocket.cpp ├── HTTPSocket.h ├── Hub.cpp ├── Hub.h ├── LICENSE ├── Libuv.h ├── Networking.cpp ├── Networking.h ├── Node.cpp ├── Node.h ├── Room.cpp ├── Room.h ├── Socket.cpp ├── Socket.h ├── WebSocket.cpp ├── WebSocket.h ├── WebSocketProtocol.h └── uWS.h └── vsbuild ├── TDAmeritradeAPI ├── TDAmeritradeAPI.vcxproj └── TDAmeritradeAPI.vcxproj.filters ├── deps ├── docs │ ├── curl │ │ ├── COPYING │ │ └── README.md │ ├── ssl │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── README │ ├── uv │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── README.md │ └── z │ │ └── README ├── includes │ ├── curl │ │ ├── COPYING │ │ └── curl │ │ │ ├── curl.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ └── typecheck-gcc.h │ ├── ssl │ │ ├── LICENSE │ │ └── openssl │ │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ │ ├── aes.h │ │ │ ├── applink.c │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── async.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── ct.h │ │ │ ├── des.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── kdf.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── rc5.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ ├── uv │ │ ├── LICENSE │ │ ├── uv.h │ │ └── uv │ │ │ ├── aix.h │ │ │ ├── android-ifaddrs.h │ │ │ ├── bsd.h │ │ │ ├── darwin.h │ │ │ ├── errno.h │ │ │ ├── linux.h │ │ │ ├── os390.h │ │ │ ├── posix.h │ │ │ ├── pthread-barrier.h │ │ │ ├── stdint-msvc2008.h │ │ │ ├── sunos.h │ │ │ ├── threadpool.h │ │ │ ├── tree.h │ │ │ ├── unix.h │ │ │ ├── version.h │ │ │ └── win.h │ └── z │ │ ├── README │ │ ├── crc32.h │ │ ├── deflate.h │ │ ├── gzguts.h │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.h │ │ ├── inftrees.h │ │ ├── trees.h │ │ ├── zconf.h │ │ ├── zlib.h │ │ └── zutil.h └── libs │ ├── Win32 │ └── Release │ │ ├── curl │ │ ├── COPYING │ │ ├── curl.exe │ │ ├── curl.pdb │ │ ├── libcurl.dll │ │ ├── libcurl.exp │ │ ├── libcurl.lib │ │ └── libcurl.pdb │ │ ├── ssl │ │ ├── LICENSE │ │ ├── libcrypto-1_1.dll │ │ ├── libcrypto-1_1.pdb │ │ ├── libcrypto.exp │ │ ├── libcrypto.lib │ │ ├── libssl-1_1.dll │ │ ├── libssl-1_1.pdb │ │ ├── libssl.exp │ │ └── libssl.lib │ │ ├── uv │ │ ├── LICENSE │ │ ├── libuv.dll │ │ ├── libuv.exp │ │ ├── libuv.lib │ │ └── libuv.pdb │ │ └── z │ │ ├── README │ │ ├── zlibwapi.dll │ │ ├── zlibwapi.exp │ │ ├── zlibwapi.lib │ │ └── zlibwapi.pdb │ └── x64 │ └── Release │ ├── curl │ ├── COPYING │ ├── curl.exe │ ├── libcurl.dll │ ├── libcurl.exp │ └── libcurl.lib │ ├── ssl │ ├── LICENSE │ ├── libcrypto-1_1-x64.dll │ ├── libcrypto-1_1-x64.pdb │ ├── libcrypto.exp │ ├── libcrypto.lib │ ├── libssl-1_1-x64.dll │ ├── libssl-1_1-x64.pdb │ ├── libssl.exp │ └── libssl.lib │ ├── uv │ ├── LICENSE │ ├── libuv.dll │ ├── libuv.exp │ ├── libuv.lib │ └── libuv.pdb │ └── z │ ├── README │ ├── zlibwapi.dll │ ├── zlibwapi.exp │ ├── zlibwapi.lib │ └── zlibwapi.pdb ├── test ├── test.vcxproj └── test.vcxproj.filters └── vsbuild.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Debug/makefile -------------------------------------------------------------------------------- /Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Debug/objects.mk -------------------------------------------------------------------------------- /Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Debug/sources.mk -------------------------------------------------------------------------------- /Debug/src/execute/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Debug/src/execute/subdir.mk -------------------------------------------------------------------------------- /Debug/src/get/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Debug/src/get/subdir.mk -------------------------------------------------------------------------------- /Debug/src/streaming/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Debug/src/streaming/subdir.mk -------------------------------------------------------------------------------- /Debug/src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Debug/src/subdir.mk -------------------------------------------------------------------------------- /Debug/uWebSockets/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Debug/uWebSockets/subdir.mk -------------------------------------------------------------------------------- /DynamicDataStore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/DynamicDataStore/README.md -------------------------------------------------------------------------------- /DynamicDataStore/include/backing_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/DynamicDataStore/include/backing_store.h -------------------------------------------------------------------------------- /DynamicDataStore/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/DynamicDataStore/include/common.h -------------------------------------------------------------------------------- /DynamicDataStore/include/tdma_data_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/DynamicDataStore/include/tdma_data_store.h -------------------------------------------------------------------------------- /DynamicDataStore/src/backing_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/DynamicDataStore/src/backing_store.cpp -------------------------------------------------------------------------------- /DynamicDataStore/src/data_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/DynamicDataStore/src/data_store.cpp -------------------------------------------------------------------------------- /DynamicDataStore/src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/DynamicDataStore/src/logging.cpp -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/README.md -------------------------------------------------------------------------------- /README_EXECUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/README_EXECUTE.md -------------------------------------------------------------------------------- /README_GET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/README_GET.md -------------------------------------------------------------------------------- /README_STREAMING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/README_STREAMING.md -------------------------------------------------------------------------------- /Release/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Release/makefile -------------------------------------------------------------------------------- /Release/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Release/objects.mk -------------------------------------------------------------------------------- /Release/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Release/sources.mk -------------------------------------------------------------------------------- /Release/src/execute/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Release/src/execute/subdir.mk -------------------------------------------------------------------------------- /Release/src/get/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Release/src/get/subdir.mk -------------------------------------------------------------------------------- /Release/src/streaming/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Release/src/streaming/subdir.mk -------------------------------------------------------------------------------- /Release/src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Release/src/subdir.mk -------------------------------------------------------------------------------- /Release/uWebSockets/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Release/uWebSockets/subdir.mk -------------------------------------------------------------------------------- /Release2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/Release2/makefile -------------------------------------------------------------------------------- /bin/BUILD_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/bin/BUILD_NOTES.txt -------------------------------------------------------------------------------- /bin/debian-4.19--x86_64--gcc/libTDAmeritradeAPI.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/bin/debian-4.19--x86_64--gcc/libTDAmeritradeAPI.so -------------------------------------------------------------------------------- /bin/win-x64-msvc/TDAmeritradeAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/bin/win-x64-msvc/TDAmeritradeAPI.dll -------------------------------------------------------------------------------- /bin/win-x64-msvc/TDAmeritradeAPI.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/bin/win-x64-msvc/TDAmeritradeAPI.exp -------------------------------------------------------------------------------- /bin/win-x64-msvc/TDAmeritradeAPI.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/bin/win-x64-msvc/TDAmeritradeAPI.lib -------------------------------------------------------------------------------- /bin/win-x64-msvc/TDAmeritradeAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/bin/win-x64-msvc/TDAmeritradeAPI.pdb -------------------------------------------------------------------------------- /bin/win-x86-msvc/TDAmeritradeAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/bin/win-x86-msvc/TDAmeritradeAPI.dll -------------------------------------------------------------------------------- /bin/win-x86-msvc/TDAmeritradeAPI.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/bin/win-x86-msvc/TDAmeritradeAPI.exp -------------------------------------------------------------------------------- /bin/win-x86-msvc/TDAmeritradeAPI.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/bin/win-x86-msvc/TDAmeritradeAPI.lib -------------------------------------------------------------------------------- /bin/win-x86-msvc/TDAmeritradeAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/bin/win-x86-msvc/TDAmeritradeAPI.pdb -------------------------------------------------------------------------------- /cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/cacert.pem -------------------------------------------------------------------------------- /include/_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/_common.h -------------------------------------------------------------------------------- /include/_execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/_execute.h -------------------------------------------------------------------------------- /include/_get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/_get.h -------------------------------------------------------------------------------- /include/_streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/_streaming.h -------------------------------------------------------------------------------- /include/_tdma_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/_tdma_api.h -------------------------------------------------------------------------------- /include/curl_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/curl_connect.h -------------------------------------------------------------------------------- /include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/json.hpp -------------------------------------------------------------------------------- /include/tdma_api_execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/tdma_api_execute.h -------------------------------------------------------------------------------- /include/tdma_api_get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/tdma_api_get.h -------------------------------------------------------------------------------- /include/tdma_api_streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/tdma_api_streaming.h -------------------------------------------------------------------------------- /include/tdma_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/tdma_common.h -------------------------------------------------------------------------------- /include/threadsafe_hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/threadsafe_hashmap.h -------------------------------------------------------------------------------- /include/threadsafe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/threadsafe_queue.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/util.h -------------------------------------------------------------------------------- /include/websocket_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/include/websocket_connect.h -------------------------------------------------------------------------------- /java/TDAmeritradeAPI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/TDAmeritradeAPI.jar -------------------------------------------------------------------------------- /java/jna.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/jna.jar -------------------------------------------------------------------------------- /java/json.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/json.jar -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/Auth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/Auth.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/CLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/CLib.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/Error.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/Error.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/TDAmeritradeAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/TDAmeritradeAPI.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/APIGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/APIGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/AccountGetterBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/AccountGetterBase.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/AccountInfoGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/AccountInfoGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/HistoricalGetterBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/HistoricalGetterBase.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/HistoricalPeriodGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/HistoricalPeriodGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/HistoricalRangeGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/HistoricalRangeGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/IndividualTransactionHistoryGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/IndividualTransactionHistoryGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/InstrumentInfoGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/InstrumentInfoGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/MarketHoursGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/MarketHoursGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/MoversGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/MoversGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/OptionChainAnalyticalGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/OptionChainAnalyticalGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/OptionChainGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/OptionChainGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/OptionChainStrategyGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/OptionChainStrategyGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/OrderGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/OrderGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/OrdersGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/OrdersGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/PreferencesGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/PreferencesGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/QuoteGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/QuoteGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/QuotesGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/QuotesGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/StreamerSubscriptionKeysGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/StreamerSubscriptionKeysGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/TransactionHistoryGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/TransactionHistoryGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/get/UserPrincipalsGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/get/UserPrincipalsGetter.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/AcctActivitySubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/AcctActivitySubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/ActivesSubscriptionBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/ActivesSubscriptionBase.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/ChartEquitySubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/ChartEquitySubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/ChartFuturesSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/ChartFuturesSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/ChartOptionsSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/ChartOptionsSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/ChartSubscriptionBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/ChartSubscriptionBase.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/LevelOneForexSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/LevelOneForexSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/LevelOneFuturesOptionsSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/LevelOneFuturesOptionsSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/LevelOneFuturesSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/LevelOneFuturesSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/ManagedSubscriptionBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/ManagedSubscriptionBase.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/NYSEActivesSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/NYSEActivesSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/NasdaqActivesSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/NasdaqActivesSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/NewsHeadlineSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/NewsHeadlineSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/OTCBBActivesSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/OTCBBActivesSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/OptionActivesSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/OptionActivesSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/OptionsSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/OptionsSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/QuotesSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/QuotesSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/RawSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/RawSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/StreamingSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/StreamingSession.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/StreamingSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/StreamingSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/SubscriptionBySymbolBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/SubscriptionBySymbolBase.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/TimesaleEquitySubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/TimesaleEquitySubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/TimesaleFuturesSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/TimesaleFuturesSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/TimesaleOptionsSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/TimesaleOptionsSubscription.java -------------------------------------------------------------------------------- /java/src/io/github/jeog/tdameritradeapi/stream/TimesaleSubscriptionBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/java/src/io/github/jeog/tdameritradeapi/stream/TimesaleSubscriptionBase.java -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/python/setup.py -------------------------------------------------------------------------------- /python/tdma_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/python/tdma_api/__init__.py -------------------------------------------------------------------------------- /python/tdma_api/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/python/tdma_api/auth.py -------------------------------------------------------------------------------- /python/tdma_api/clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/python/tdma_api/clib.py -------------------------------------------------------------------------------- /python/tdma_api/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/python/tdma_api/common.py -------------------------------------------------------------------------------- /python/tdma_api/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/python/tdma_api/execute.py -------------------------------------------------------------------------------- /python/tdma_api/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/python/tdma_api/get.py -------------------------------------------------------------------------------- /python/tdma_api/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/python/tdma_api/stream.py -------------------------------------------------------------------------------- /src/auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/auth.cpp -------------------------------------------------------------------------------- /src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/common.cpp -------------------------------------------------------------------------------- /src/curl_connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/curl_connect.cpp -------------------------------------------------------------------------------- /src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/error.cpp -------------------------------------------------------------------------------- /src/execute/execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/execute/execute.cpp -------------------------------------------------------------------------------- /src/execute/order_leg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/execute/order_leg.cpp -------------------------------------------------------------------------------- /src/execute/order_ticket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/execute/order_ticket.cpp -------------------------------------------------------------------------------- /src/get/account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/get/account.cpp -------------------------------------------------------------------------------- /src/get/get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/get/get.cpp -------------------------------------------------------------------------------- /src/get/historical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/get/historical.cpp -------------------------------------------------------------------------------- /src/get/instrument_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/get/instrument_info.cpp -------------------------------------------------------------------------------- /src/get/market_hours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/get/market_hours.cpp -------------------------------------------------------------------------------- /src/get/movers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/get/movers.cpp -------------------------------------------------------------------------------- /src/get/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/get/options.cpp -------------------------------------------------------------------------------- /src/get/quotes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/get/quotes.cpp -------------------------------------------------------------------------------- /src/streaming/streaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/streaming/streaming.cpp -------------------------------------------------------------------------------- /src/streaming/streaming_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/streaming/streaming_session.cpp -------------------------------------------------------------------------------- /src/streaming/streaming_subscriptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/streaming/streaming_subscriptions.cpp -------------------------------------------------------------------------------- /src/tdma_connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/tdma_connect.cpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/websocket_connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/src/websocket_connect.cpp -------------------------------------------------------------------------------- /test/c/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/c/test.h -------------------------------------------------------------------------------- /test/c/test_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/c/test_exec.c -------------------------------------------------------------------------------- /test/c/test_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/c/test_get.c -------------------------------------------------------------------------------- /test/c/test_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/c/test_main.c -------------------------------------------------------------------------------- /test/c/test_streaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/c/test_streaming.c -------------------------------------------------------------------------------- /test/cpp/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/cpp/test.h -------------------------------------------------------------------------------- /test/cpp/test_exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/cpp/test_exec.cpp -------------------------------------------------------------------------------- /test/cpp/test_get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/cpp/test_get.cpp -------------------------------------------------------------------------------- /test/cpp/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/cpp/test_main.cpp -------------------------------------------------------------------------------- /test/cpp/test_streaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/cpp/test_streaming.cpp -------------------------------------------------------------------------------- /test/java/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/java/Test.java -------------------------------------------------------------------------------- /test/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/python/test.py -------------------------------------------------------------------------------- /test/scala/Test.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/test/scala/Test.scala -------------------------------------------------------------------------------- /tools/credential_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/tools/credential_builder.py -------------------------------------------------------------------------------- /tools/creds_from_access_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/tools/creds_from_access_code.py -------------------------------------------------------------------------------- /tools/get-access-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/tools/get-access-code.html -------------------------------------------------------------------------------- /uWebSockets/Asio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Asio.h -------------------------------------------------------------------------------- /uWebSockets/Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Backend.h -------------------------------------------------------------------------------- /uWebSockets/Epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Epoll.cpp -------------------------------------------------------------------------------- /uWebSockets/Epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Epoll.h -------------------------------------------------------------------------------- /uWebSockets/Extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Extensions.cpp -------------------------------------------------------------------------------- /uWebSockets/Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Extensions.h -------------------------------------------------------------------------------- /uWebSockets/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Group.cpp -------------------------------------------------------------------------------- /uWebSockets/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Group.h -------------------------------------------------------------------------------- /uWebSockets/HTTPSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/HTTPSocket.cpp -------------------------------------------------------------------------------- /uWebSockets/HTTPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/HTTPSocket.h -------------------------------------------------------------------------------- /uWebSockets/Hub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Hub.cpp -------------------------------------------------------------------------------- /uWebSockets/Hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Hub.h -------------------------------------------------------------------------------- /uWebSockets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/LICENSE -------------------------------------------------------------------------------- /uWebSockets/Libuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Libuv.h -------------------------------------------------------------------------------- /uWebSockets/Networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Networking.cpp -------------------------------------------------------------------------------- /uWebSockets/Networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Networking.h -------------------------------------------------------------------------------- /uWebSockets/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Node.cpp -------------------------------------------------------------------------------- /uWebSockets/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Node.h -------------------------------------------------------------------------------- /uWebSockets/Room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Room.cpp -------------------------------------------------------------------------------- /uWebSockets/Room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Room.h -------------------------------------------------------------------------------- /uWebSockets/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Socket.cpp -------------------------------------------------------------------------------- /uWebSockets/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/Socket.h -------------------------------------------------------------------------------- /uWebSockets/WebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/WebSocket.cpp -------------------------------------------------------------------------------- /uWebSockets/WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/WebSocket.h -------------------------------------------------------------------------------- /uWebSockets/WebSocketProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/WebSocketProtocol.h -------------------------------------------------------------------------------- /uWebSockets/uWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/uWebSockets/uWS.h -------------------------------------------------------------------------------- /vsbuild/TDAmeritradeAPI/TDAmeritradeAPI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/TDAmeritradeAPI/TDAmeritradeAPI.vcxproj -------------------------------------------------------------------------------- /vsbuild/TDAmeritradeAPI/TDAmeritradeAPI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/TDAmeritradeAPI/TDAmeritradeAPI.vcxproj.filters -------------------------------------------------------------------------------- /vsbuild/deps/docs/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/docs/curl/COPYING -------------------------------------------------------------------------------- /vsbuild/deps/docs/curl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/docs/curl/README.md -------------------------------------------------------------------------------- /vsbuild/deps/docs/ssl/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/docs/ssl/AUTHORS -------------------------------------------------------------------------------- /vsbuild/deps/docs/ssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/docs/ssl/LICENSE -------------------------------------------------------------------------------- /vsbuild/deps/docs/ssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/docs/ssl/README -------------------------------------------------------------------------------- /vsbuild/deps/docs/uv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/docs/uv/AUTHORS -------------------------------------------------------------------------------- /vsbuild/deps/docs/uv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/docs/uv/LICENSE -------------------------------------------------------------------------------- /vsbuild/deps/docs/uv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/docs/uv/README.md -------------------------------------------------------------------------------- /vsbuild/deps/docs/z/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/docs/z/README -------------------------------------------------------------------------------- /vsbuild/deps/includes/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/curl/COPYING -------------------------------------------------------------------------------- /vsbuild/deps/includes/curl/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/curl/curl/curl.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/curl/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/curl/curl/curlver.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/curl/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/curl/curl/easy.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/curl/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/curl/curl/mprintf.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/curl/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/curl/curl/multi.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/curl/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/curl/curl/stdcheaders.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/curl/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/curl/curl/system.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/curl/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/curl/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/LICENSE -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/__DECC_INCLUDE_EPILOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/__DECC_INCLUDE_EPILOGUE.H -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/__DECC_INCLUDE_PROLOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/__DECC_INCLUDE_PROLOGUE.H -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/aes.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/applink.c -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/asn1.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/asn1_mac.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/asn1t.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/async.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/bio.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/blowfish.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/bn.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/buffer.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/camellia.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/cast.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/cmac.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/cms.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/comp.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/conf.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/conf_api.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/crypto.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ct.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/des.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/dh.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/dsa.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/dtls1.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/e_os2.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ebcdic.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ec.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ecdh.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ecdsa.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/engine.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/err.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/evp.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/hmac.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/idea.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/kdf.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/lhash.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/md2.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/md4.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/md5.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/mdc2.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/modes.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/obj_mac.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/objects.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ocsp.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/opensslconf.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/opensslv.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ossl_typ.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/pem.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/pem2.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/pkcs12.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/pkcs7.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/rand.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/rc2.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/rc4.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/rc5.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ripemd.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/rsa.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/safestack.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/seed.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/sha.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/srp.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/srtp.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ssl.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ssl2.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ssl3.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/stack.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/symhacks.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/tls1.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ts.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/txt_db.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/ui.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/whrlpool.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/x509.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/x509_vfy.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/ssl/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/ssl/openssl/x509v3.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/LICENSE -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/aix.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/android-ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/android-ifaddrs.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/bsd.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/darwin.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/errno.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/linux.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/os390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/os390.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/posix.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/pthread-barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/pthread-barrier.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/stdint-msvc2008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/stdint-msvc2008.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/sunos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/sunos.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/threadpool.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/tree.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/unix.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/version.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/uv/uv/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/uv/uv/win.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/README -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/crc32.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/deflate.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/gzguts.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/inffast.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/inffixed.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/inflate.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/inftrees.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/trees.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/zconf.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/zlib.h -------------------------------------------------------------------------------- /vsbuild/deps/includes/z/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/includes/z/zutil.h -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/curl/COPYING -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/curl/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/curl/curl.exe -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/curl/curl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/curl/curl.pdb -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/curl/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/curl/libcurl.dll -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/curl/libcurl.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/curl/libcurl.exp -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/curl/libcurl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/curl/libcurl.lib -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/curl/libcurl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/curl/libcurl.pdb -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/ssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/ssl/LICENSE -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/ssl/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/ssl/libcrypto-1_1.dll -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/ssl/libcrypto-1_1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/ssl/libcrypto-1_1.pdb -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/ssl/libcrypto.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/ssl/libcrypto.exp -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/ssl/libcrypto.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/ssl/libcrypto.lib -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/ssl/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/ssl/libssl-1_1.dll -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/ssl/libssl-1_1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/ssl/libssl-1_1.pdb -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/ssl/libssl.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/ssl/libssl.exp -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/ssl/libssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/ssl/libssl.lib -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/uv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/uv/LICENSE -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/uv/libuv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/uv/libuv.dll -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/uv/libuv.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/uv/libuv.exp -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/uv/libuv.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/uv/libuv.lib -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/uv/libuv.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/uv/libuv.pdb -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/z/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/z/README -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/z/zlibwapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/z/zlibwapi.dll -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/z/zlibwapi.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/z/zlibwapi.exp -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/z/zlibwapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/z/zlibwapi.lib -------------------------------------------------------------------------------- /vsbuild/deps/libs/Win32/Release/z/zlibwapi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/Win32/Release/z/zlibwapi.pdb -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/curl/COPYING -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/curl/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/curl/curl.exe -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/curl/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/curl/libcurl.dll -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/curl/libcurl.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/curl/libcurl.exp -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/curl/libcurl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/curl/libcurl.lib -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/ssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/ssl/LICENSE -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/ssl/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/ssl/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/ssl/libcrypto-1_1-x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/ssl/libcrypto-1_1-x64.pdb -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/ssl/libcrypto.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/ssl/libcrypto.exp -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/ssl/libcrypto.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/ssl/libcrypto.lib -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/ssl/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/ssl/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/ssl/libssl-1_1-x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/ssl/libssl-1_1-x64.pdb -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/ssl/libssl.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/ssl/libssl.exp -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/ssl/libssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/ssl/libssl.lib -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/uv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/uv/LICENSE -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/uv/libuv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/uv/libuv.dll -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/uv/libuv.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/uv/libuv.exp -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/uv/libuv.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/uv/libuv.lib -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/uv/libuv.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/uv/libuv.pdb -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/z/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/z/README -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/z/zlibwapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/z/zlibwapi.dll -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/z/zlibwapi.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/z/zlibwapi.exp -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/z/zlibwapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/z/zlibwapi.lib -------------------------------------------------------------------------------- /vsbuild/deps/libs/x64/Release/z/zlibwapi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/deps/libs/x64/Release/z/zlibwapi.pdb -------------------------------------------------------------------------------- /vsbuild/test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/test/test.vcxproj -------------------------------------------------------------------------------- /vsbuild/test/test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/test/test.vcxproj.filters -------------------------------------------------------------------------------- /vsbuild/vsbuild.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeog/TDAmeritradeAPI/HEAD/vsbuild/vsbuild.sln --------------------------------------------------------------------------------