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
(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_CkHttp.h> #include <C_CkJsonObject.h> #include <C_CkHttpResponse.h> #include <C_CkXml.h> void ChilkatSample(void) { HCkHttp http; HCkJsonObject jsonToken; BOOL success; const char *sandboxUrl; const char *liveUrl; HCkHttpResponse resp; HCkXml xml; int accountId; const char *accountType; const char *optionLevel; const char *accountDescription; int quoteMode; const char *dayTraderStatus; const char *accountMode; int fundsForOpenOrdersCash; int moneyMktBalance; int cashAvailableForInvestment; const char *netCash; const char *cashBalance; int settledCashForInvestment; int unSettledCashForInvestment; int fundsWithheldFromPurchasePower; int fundsWithheldFromWithdrawal; int marginBuyingPower; const char *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 = CkHttp_Create(); CkHttp_putOAuth1(http,TRUE); CkHttp_putOAuthVerifier(http,""); CkHttp_putOAuthConsumerKey(http,"ETRADE_CONSUMER_KEY"); CkHttp_putOAuthConsumerSecret(http,"ETRADE_CONSUMER_SECRET"); // Load the access token previously obtained via the OAuth1 Authorization jsonToken = CkJsonObject_Create(); success = CkJsonObject_LoadFile(jsonToken,"qa_data/tokens/etrade.json"); if (success != TRUE) { printf("Failed to load OAuth1 token\n"); CkHttp_Dispose(http); CkJsonObject_Dispose(jsonToken); return; } CkHttp_putOAuthToken(http,CkJsonObject_stringOf(jsonToken,"oauth_token")); CkHttp_putOAuthTokenSecret(http,CkJsonObject_stringOf(jsonToken,"oauth_token_secret")); sandboxUrl = "https://apisb.etrade.com/v1/accounts/{$accountIdKey}/balance?instType={$instType}&realTimeNAV=true"; liveUrl = "https://api.etrade.com/v1/accounts/{$accountIdKey}/balance?instType={$instType}&realTimeNAV=true"; CkHttp_SetUrlVar(http,"accountIdKey","6_Dpy0rmuQ9cu9IbTfvF2A"); CkHttp_SetUrlVar(http,"instType","BROKERAGE"); resp = CkHttp_QuickGetObj(http,sandboxUrl); if (CkHttp_getLastMethodSuccess(http) != TRUE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); CkJsonObject_Dispose(jsonToken); return; } // Make sure a successful response was received. if (CkHttpResponse_getStatusCode(resp) > 200) { printf("%s\n",CkHttpResponse_statusLine(resp)); printf("%s\n",CkHttpResponse_header(resp)); printf("%s\n",CkHttpResponse_bodyStr(resp)); CkHttp_Dispose(http); CkJsonObject_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 = CkXml_Create(); CkXml_LoadXml(xml,CkHttpResponse_bodyStr(resp)); printf("%s\n",CkXml_getXml(xml)); accountId = CkXml_GetChildIntValue(xml,"accountId"); accountType = CkXml_getChildContent(xml,"accountType"); optionLevel = CkXml_getChildContent(xml,"optionLevel"); accountDescription = CkXml_getChildContent(xml,"accountDescription"); quoteMode = CkXml_GetChildIntValue(xml,"quoteMode"); dayTraderStatus = CkXml_getChildContent(xml,"dayTraderStatus"); accountMode = CkXml_getChildContent(xml,"accountMode"); fundsForOpenOrdersCash = CkXml_GetChildIntValue(xml,"Cash|fundsForOpenOrdersCash"); moneyMktBalance = CkXml_GetChildIntValue(xml,"Cash|moneyMktBalance"); cashAvailableForInvestment = CkXml_GetChildIntValue(xml,"Computed|cashAvailableForInvestment"); netCash = CkXml_getChildContent(xml,"Computed|netCash"); cashBalance = CkXml_getChildContent(xml,"Computed|cashBalance"); settledCashForInvestment = CkXml_GetChildIntValue(xml,"Computed|settledCashForInvestment"); unSettledCashForInvestment = CkXml_GetChildIntValue(xml,"Computed|unSettledCashForInvestment"); fundsWithheldFromPurchasePower = CkXml_GetChildIntValue(xml,"Computed|fundsWithheldFromPurchasePower"); fundsWithheldFromWithdrawal = CkXml_GetChildIntValue(xml,"Computed|fundsWithheldFromWithdrawal"); marginBuyingPower = CkXml_GetChildIntValue(xml,"Computed|marginBuyingPower"); cashBuyingPower = CkXml_getChildContent(xml,"Computed|cashBuyingPower"); dtMarginBuyingPower = CkXml_GetChildIntValue(xml,"Computed|dtMarginBuyingPower"); dtCashBuyingPower = CkXml_GetChildIntValue(xml,"Computed|dtCashBuyingPower"); shortAdjustBalance = CkXml_GetChildIntValue(xml,"Computed|shortAdjustBalance"); regtEquity = CkXml_GetChildIntValue(xml,"Computed|regtEquity"); regtEquityPercent = CkXml_GetChildIntValue(xml,"Computed|regtEquityPercent"); accountBalance = CkXml_GetChildIntValue(xml,"Computed|accountBalance"); dtCashOpenOrderReserve = CkXml_GetChildIntValue(xml,"Margin|dtCashOpenOrderReserve"); dtMarginOpenOrderReserve = CkXml_GetChildIntValue(xml,"Margin|dtMarginOpenOrderReserve"); printf("Success.\n"); CkHttp_Dispose(http); CkJsonObject_Dispose(jsonToken); CkXml_Dispose(xml); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.