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
(Swift 3,4,5...) 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
func chilkatTest() { // This requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let http = CkoHttp()! http.oAuth1 = true http.oAuthVerifier = "" http.oAuthConsumerKey = "ETRADE_CONSUMER_KEY" http.oAuthConsumerSecret = "ETRADE_CONSUMER_SECRET" // Load the access token previously obtained via the OAuth1 Authorization let jsonToken = CkoJsonObject()! var success: Bool = jsonToken.loadFile("qa_data/tokens/etrade.json") if success != true { print("Failed to load OAuth1 token") return } http.oAuthToken = jsonToken.string(of: "oauth_token") http.oAuthTokenSecret = jsonToken.string(of: "oauth_token_secret") var sandboxUrl: String? = "https://apisb.etrade.com/v1/accounts/{$accountIdKey}/balance?instType={$instType}&realTimeNAV=true" var liveUrl: String? = "https://api.etrade.com/v1/accounts/{$accountIdKey}/balance?instType={$instType}&realTimeNAV=true" http.setUrlVar("accountIdKey", value: "6_Dpy0rmuQ9cu9IbTfvF2A") http.setUrlVar("instType", value: "BROKERAGE") var resp: CkoHttpResponse? = http.quickGetObj(sandboxUrl) if http.lastMethodSuccess != true { print("\(http.lastErrorText!)") return } // Make sure a successful response was received. if resp!.statusCode.intValue > 200 { print("\(resp!.statusLine!)") print("\(resp!.header!)") print("\(resp!.bodyStr!)") 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> let xml = CkoXml()! xml.load(resp!.bodyStr) print("\(xml.getXml()!)") var accountId: Int var accountType: String? var optionLevel: String? var accountDescription: String? var quoteMode: Int var dayTraderStatus: String? var accountMode: String? var fundsForOpenOrdersCash: Int var moneyMktBalance: Int var cashAvailableForInvestment: Int var netCash: String? var cashBalance: String? var settledCashForInvestment: Int var unSettledCashForInvestment: Int var fundsWithheldFromPurchasePower: Int var fundsWithheldFromWithdrawal: Int var marginBuyingPower: Int var cashBuyingPower: String? var dtMarginBuyingPower: Int var dtCashBuyingPower: Int var shortAdjustBalance: Int var regtEquity: Int var regtEquityPercent: Int var accountBalance: Int var dtCashOpenOrderReserve: Int var dtMarginOpenOrderReserve: Int accountId = xml.getChildIntValue("accountId").intValue accountType = xml.getChildContent("accountType") optionLevel = xml.getChildContent("optionLevel") accountDescription = xml.getChildContent("accountDescription") quoteMode = xml.getChildIntValue("quoteMode").intValue dayTraderStatus = xml.getChildContent("dayTraderStatus") accountMode = xml.getChildContent("accountMode") fundsForOpenOrdersCash = xml.getChildIntValue("Cash|fundsForOpenOrdersCash").intValue moneyMktBalance = xml.getChildIntValue("Cash|moneyMktBalance").intValue cashAvailableForInvestment = xml.getChildIntValue("Computed|cashAvailableForInvestment").intValue netCash = xml.getChildContent("Computed|netCash") cashBalance = xml.getChildContent("Computed|cashBalance") settledCashForInvestment = xml.getChildIntValue("Computed|settledCashForInvestment").intValue unSettledCashForInvestment = xml.getChildIntValue("Computed|unSettledCashForInvestment").intValue fundsWithheldFromPurchasePower = xml.getChildIntValue("Computed|fundsWithheldFromPurchasePower").intValue fundsWithheldFromWithdrawal = xml.getChildIntValue("Computed|fundsWithheldFromWithdrawal").intValue marginBuyingPower = xml.getChildIntValue("Computed|marginBuyingPower").intValue cashBuyingPower = xml.getChildContent("Computed|cashBuyingPower") dtMarginBuyingPower = xml.getChildIntValue("Computed|dtMarginBuyingPower").intValue dtCashBuyingPower = xml.getChildIntValue("Computed|dtCashBuyingPower").intValue shortAdjustBalance = xml.getChildIntValue("Computed|shortAdjustBalance").intValue regtEquity = xml.getChildIntValue("Computed|regtEquity").intValue regtEquityPercent = xml.getChildIntValue("Computed|regtEquityPercent").intValue accountBalance = xml.getChildIntValue("Computed|accountBalance").intValue dtCashOpenOrderReserve = xml.getChildIntValue("Margin|dtCashOpenOrderReserve").intValue dtMarginOpenOrderReserve = xml.getChildIntValue("Margin|dtMarginOpenOrderReserve").intValue print("Success.") } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.