Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

SQL Server Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(SQL Server) ETrade v1 Get Account Balances

Get account balances using the ETrade v1 API.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

// Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
//
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    DECLARE @sTmp0 nvarchar(4000)
    -- This example requires the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    EXEC sp_OASetProperty @http, 'OAuth1', 1
    EXEC sp_OASetProperty @http, 'OAuthVerifier', ''
    EXEC sp_OASetProperty @http, 'OAuthConsumerKey', 'ETRADE_CONSUMER_KEY'
    EXEC sp_OASetProperty @http, 'OAuthConsumerSecret', 'ETRADE_CONSUMER_SECRET'

    -- Load the access token previously obtained via the OAuth1 3-Legged Authorization examples Step1 and Step2.
    DECLARE @json int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @json OUT

    DECLARE @success int
    EXEC sp_OAMethod @json, 'LoadFile', @success OUT, 'qa_data/tokens/etrade.json'
    IF @success <> 1
      BEGIN

        PRINT 'Failed to load OAuth1 token'
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        RETURN
      END

    EXEC sp_OAMethod @json, 'StringOf', @sTmp0 OUT, 'oauth_token'
    EXEC sp_OASetProperty @http, 'OAuthToken', @sTmp0
    EXEC sp_OAMethod @json, 'StringOf', @sTmp0 OUT, 'oauth_token_secret'
    EXEC sp_OASetProperty @http, 'OAuthTokenSecret', @sTmp0

    -- See the ETrade v1 API documentation HERE.

    EXEC sp_OAMethod @http, 'SetUrlVar', @success OUT, 'accountIdKey', 'vsnhtF7d9jXxBy6HyaAC4vQ'
    EXEC sp_OAMethod @http, 'SetUrlVar', @success OUT, 'instType', 'BROKERAGE'
    DECLARE @respStr nvarchar(4000)
    EXEC sp_OAMethod @http, 'QuickGetStr', @respStr OUT, 'https://apisb.etrade.com/v1/accounts/{$accountIdKey}/balance?instType={$instType}&realTimeNAV=true'
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 <> 1
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        RETURN
      END

    -- A 200 status code indicates success.
    DECLARE @statusCode int
    EXEC sp_OAGetProperty @http, 'LastStatus', @statusCode OUT

    PRINT 'statusCode = ' + @statusCode

    -- Use the following online tool to generate parsing code from sample XML: 
    -- Generate Parsing Code from XML

    -- A sample XML response is shown below...

    DECLARE @xml int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Xml', @xml OUT

    EXEC sp_OAMethod @xml, 'LoadXml', @success OUT, @respStr

    DECLARE @tagPath nvarchar(4000)

    DECLARE @accountId int

    DECLARE @accountType nvarchar(4000)

    DECLARE @optionLevel nvarchar(4000)

    DECLARE @accountDescription nvarchar(4000)

    DECLARE @quoteMode int

    DECLARE @dayTraderStatus nvarchar(4000)

    DECLARE @accountMode nvarchar(4000)

    DECLARE @fundsForOpenOrdersCash int

    DECLARE @moneyMktBalance int

    DECLARE @cashAvailableForInvestment int

    DECLARE @netCash nvarchar(4000)

    DECLARE @cashBalance nvarchar(4000)

    DECLARE @settledCashForInvestment int

    DECLARE @unSettledCashForInvestment int

    DECLARE @fundsWithheldFromPurchasePower int

    DECLARE @fundsWithheldFromWithdrawal int

    DECLARE @marginBuyingPower int

    DECLARE @cashBuyingPower nvarchar(4000)

    DECLARE @dtMarginBuyingPower int

    DECLARE @dtCashBuyingPower int

    DECLARE @shortAdjustBalance int

    DECLARE @regtEquity int

    DECLARE @regtEquityPercent int

    DECLARE @accountBalance int

    DECLARE @dtCashOpenOrderReserve int

    DECLARE @dtMarginOpenOrderReserve int

    EXEC sp_OAMethod @xml, 'GetChildIntValue', @accountId OUT, 'accountId'
    EXEC sp_OAMethod @xml, 'GetChildContent', @accountType OUT, 'accountType'
    EXEC sp_OAMethod @xml, 'GetChildContent', @optionLevel OUT, 'optionLevel'
    EXEC sp_OAMethod @xml, 'GetChildContent', @accountDescription OUT, 'accountDescription'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @quoteMode OUT, 'quoteMode'
    EXEC sp_OAMethod @xml, 'GetChildContent', @dayTraderStatus OUT, 'dayTraderStatus'
    EXEC sp_OAMethod @xml, 'GetChildContent', @accountMode OUT, 'accountMode'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @fundsForOpenOrdersCash OUT, 'Cash|fundsForOpenOrdersCash'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @moneyMktBalance OUT, 'Cash|moneyMktBalance'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @cashAvailableForInvestment OUT, 'Computed|cashAvailableForInvestment'
    EXEC sp_OAMethod @xml, 'GetChildContent', @netCash OUT, 'Computed|netCash'
    EXEC sp_OAMethod @xml, 'GetChildContent', @cashBalance OUT, 'Computed|cashBalance'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @settledCashForInvestment OUT, 'Computed|settledCashForInvestment'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @unSettledCashForInvestment OUT, 'Computed|unSettledCashForInvestment'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @fundsWithheldFromPurchasePower OUT, 'Computed|fundsWithheldFromPurchasePower'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @fundsWithheldFromWithdrawal OUT, 'Computed|fundsWithheldFromWithdrawal'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @marginBuyingPower OUT, 'Computed|marginBuyingPower'
    EXEC sp_OAMethod @xml, 'GetChildContent', @cashBuyingPower OUT, 'Computed|cashBuyingPower'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @dtMarginBuyingPower OUT, 'Computed|dtMarginBuyingPower'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @dtCashBuyingPower OUT, 'Computed|dtCashBuyingPower'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @shortAdjustBalance OUT, 'Computed|shortAdjustBalance'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @regtEquity OUT, 'Computed|regtEquity'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @regtEquityPercent OUT, 'Computed|regtEquityPercent'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @accountBalance OUT, 'Computed|accountBalance'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @dtCashOpenOrderReserve OUT, 'Margin|dtCashOpenOrderReserve'
    EXEC sp_OAMethod @xml, 'GetChildIntValue', @dtMarginOpenOrderReserve OUT, 'Margin|dtMarginOpenOrderReserve'

    -- <?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>

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @json
    EXEC @hr = sp_OADestroy @xml


END
GO

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.