Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C) ETrade Get Account BalancesRetrieves the current account balance and related details for a specified account. For more information, see https://apisb.etrade.com/docs/api/account/api-balance-v1.html
#include <C_CkHttpW.h> #include <C_CkJsonObjectW.h> #include <C_CkHttpResponseW.h> #include <C_CkXmlW.h> void ChilkatSample(void) { HCkHttpW http; HCkJsonObjectW jsonToken; BOOL success; const wchar_t *sandboxUrl; const wchar_t *liveUrl; HCkHttpResponseW resp; HCkXmlW xml; int accountId; const wchar_t *accountType; const wchar_t *optionLevel; const wchar_t *accountDescription; int quoteMode; const wchar_t *dayTraderStatus; const wchar_t *accountMode; int fundsForOpenOrdersCash; int moneyMktBalance; int cashAvailableForInvestment; const wchar_t *netCash; const wchar_t *cashBalance; int settledCashForInvestment; int unSettledCashForInvestment; int fundsWithheldFromPurchasePower; int fundsWithheldFromWithdrawal; int marginBuyingPower; const wchar_t *cashBuyingPower; int dtMarginBuyingPower; int dtCashBuyingPower; int shortAdjustBalance; int regtEquity; int regtEquityPercent; int accountBalance; int dtCashOpenOrderReserve; int dtMarginOpenOrderReserve; // This requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttpW_Create(); CkHttpW_putOAuth1(http,TRUE); CkHttpW_putOAuthVerifier(http,L""); CkHttpW_putOAuthConsumerKey(http,L"ETRADE_CONSUMER_KEY"); CkHttpW_putOAuthConsumerSecret(http,L"ETRADE_CONSUMER_SECRET"); // Load the access token previously obtained via the OAuth1 Authorization jsonToken = CkJsonObjectW_Create(); success = CkJsonObjectW_LoadFile(jsonToken,L"qa_data/tokens/etrade.json"); if (success != TRUE) { wprintf(L"Failed to load OAuth1 token\n"); CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonToken); return; } CkHttpW_putOAuthToken(http,CkJsonObjectW_stringOf(jsonToken,L"oauth_token")); CkHttpW_putOAuthTokenSecret(http,CkJsonObjectW_stringOf(jsonToken,L"oauth_token_secret")); sandboxUrl = L"https://apisb.etrade.com/v1/accounts/{$accountIdKey}/balance?instType={$instType}&realTimeNAV=true"; liveUrl = L"https://api.etrade.com/v1/accounts/{$accountIdKey}/balance?instType={$instType}&realTimeNAV=true"; CkHttpW_SetUrlVar(http,L"accountIdKey",L"6_Dpy0rmuQ9cu9IbTfvF2A"); CkHttpW_SetUrlVar(http,L"instType",L"BROKERAGE"); resp = CkHttpW_QuickGetObj(http,sandboxUrl); if (CkHttpW_getLastMethodSuccess(http) != TRUE) { wprintf(L"%s\n",CkHttpW_lastErrorText(http)); CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonToken); return; } // Make sure a successful response was received. if (CkHttpResponseW_getStatusCode(resp) > 200) { wprintf(L"%s\n",CkHttpResponseW_statusLine(resp)); wprintf(L"%s\n",CkHttpResponseW_header(resp)); wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp)); CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonToken); return; } // Sample XML response: // Use this online tool to generate parsing code from sample XML: // Generate Parsing Code from XML // <?xml version="1.0" encoding="UTF-8"?> // <BalanceResponse> // <accountId>83564979</accountId> // <accountType>PDT_ACCOUNT</accountType> // <optionLevel>LEVEL_4</optionLevel> // <accountDescription>KRITHH TT</accountDescription> // <quoteMode>6</quoteMode> // <dayTraderStatus>PDT_MIN_EQUITY_RES_1XK</dayTraderStatus> // <accountMode>PDT ACCOUNT</accountMode> // <Cash> // <fundsForOpenOrdersCash>0</fundsForOpenOrdersCash> // <moneyMktBalance>0</moneyMktBalance> // </Cash> // <Computed> // <cashAvailableForInvestment>0</cashAvailableForInvestment> // <netCash>93921.44</netCash> // <cashBalance>93921.44</cashBalance> // <settledCashForInvestment>0</settledCashForInvestment> // <unSettledCashForInvestment>0</unSettledCashForInvestment> // <fundsWithheldFromPurchasePower>0</fundsWithheldFromPurchasePower> // <fundsWithheldFromWithdrawal>0</fundsWithheldFromWithdrawal> // <marginBuyingPower>0</marginBuyingPower> // <cashBuyingPower>93921.44</cashBuyingPower> // <dtMarginBuyingPower>0</dtMarginBuyingPower> // <dtCashBuyingPower>0</dtCashBuyingPower> // <shortAdjustBalance>0</shortAdjustBalance> // <regtEquity>0</regtEquity> // <regtEquityPercent>0</regtEquityPercent> // <accountBalance>0</accountBalance> // </Computed> // <Margin> // <dtCashOpenOrderReserve>0</dtCashOpenOrderReserve> // <dtMarginOpenOrderReserve>0</dtMarginOpenOrderReserve> // </Margin> // </BalanceResponse> xml = CkXmlW_Create(); CkXmlW_LoadXml(xml,CkHttpResponseW_bodyStr(resp)); wprintf(L"%s\n",CkXmlW_getXml(xml)); accountId = CkXmlW_GetChildIntValue(xml,L"accountId"); accountType = CkXmlW_getChildContent(xml,L"accountType"); optionLevel = CkXmlW_getChildContent(xml,L"optionLevel"); accountDescription = CkXmlW_getChildContent(xml,L"accountDescription"); quoteMode = CkXmlW_GetChildIntValue(xml,L"quoteMode"); dayTraderStatus = CkXmlW_getChildContent(xml,L"dayTraderStatus"); accountMode = CkXmlW_getChildContent(xml,L"accountMode"); fundsForOpenOrdersCash = CkXmlW_GetChildIntValue(xml,L"Cash|fundsForOpenOrdersCash"); moneyMktBalance = CkXmlW_GetChildIntValue(xml,L"Cash|moneyMktBalance"); cashAvailableForInvestment = CkXmlW_GetChildIntValue(xml,L"Computed|cashAvailableForInvestment"); netCash = CkXmlW_getChildContent(xml,L"Computed|netCash"); cashBalance = CkXmlW_getChildContent(xml,L"Computed|cashBalance"); settledCashForInvestment = CkXmlW_GetChildIntValue(xml,L"Computed|settledCashForInvestment"); unSettledCashForInvestment = CkXmlW_GetChildIntValue(xml,L"Computed|unSettledCashForInvestment"); fundsWithheldFromPurchasePower = CkXmlW_GetChildIntValue(xml,L"Computed|fundsWithheldFromPurchasePower"); fundsWithheldFromWithdrawal = CkXmlW_GetChildIntValue(xml,L"Computed|fundsWithheldFromWithdrawal"); marginBuyingPower = CkXmlW_GetChildIntValue(xml,L"Computed|marginBuyingPower"); cashBuyingPower = CkXmlW_getChildContent(xml,L"Computed|cashBuyingPower"); dtMarginBuyingPower = CkXmlW_GetChildIntValue(xml,L"Computed|dtMarginBuyingPower"); dtCashBuyingPower = CkXmlW_GetChildIntValue(xml,L"Computed|dtCashBuyingPower"); shortAdjustBalance = CkXmlW_GetChildIntValue(xml,L"Computed|shortAdjustBalance"); regtEquity = CkXmlW_GetChildIntValue(xml,L"Computed|regtEquity"); regtEquityPercent = CkXmlW_GetChildIntValue(xml,L"Computed|regtEquityPercent"); accountBalance = CkXmlW_GetChildIntValue(xml,L"Computed|accountBalance"); dtCashOpenOrderReserve = CkXmlW_GetChildIntValue(xml,L"Margin|dtCashOpenOrderReserve"); dtMarginOpenOrderReserve = CkXmlW_GetChildIntValue(xml,L"Margin|dtMarginOpenOrderReserve"); wprintf(L"Success.\n"); CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonToken); CkXmlW_Dispose(xml); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.