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

Visual Basic 6.0 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

 

 

 

(Visual Basic 6.0) ETrade - Place Equity Order (JSON version)

Shows how to place an equity order using ETrade with OAuth1 authorization.

See https://developer.etrade.com/ctnt/dev-portal/getDetail?contentUri=V0_Documentation-OrderAPI-PlaceEquityOrder for more information.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

' This example assumes the Chilkat HTTP API to have been previously unlocked.
' See Global Unlock Sample for sample code.

Dim http As New ChilkatHttp

http.OAuth1 = 1
http.OAuthVerifier = ""
http.OAuthConsumerKey = "ETRADE_CONSUMER_KEY"
http.OAuthConsumerSecret = "ETRADE_CONSUMER_SECRET"

' Load the access token previously obtained via the OAuth1 3-Legged Authorization
Dim jsonToken As New ChilkatJsonObject
Dim success As Long
success = jsonToken.LoadFile("qa_data/tokens/etrade.json")
If (success <> 1) Then
    Debug.Print "Failed to load OAuth1 token"
    Exit Sub
End If

http.OAuthToken = jsonToken.StringOf("oauth_token")
http.OAuthTokenSecret = jsonToken.StringOf("oauth_token_secret")

' Build the JSON request body
Dim json As New ChilkatJsonObject
success = json.UpdateString("PlaceEquityOrder.-xmlns","http://order.etws.etrade.com")
' The accountId should be an 8-digit number such as "83405188"
success = json.UpdateString("PlaceEquityOrder.EquityOrderRequest.accountId","MY_ETRADE_ACCOUNT_ID")
success = json.UpdateString("PlaceEquityOrder.EquityOrderRequest.clientOrderId","45")
success = json.UpdateString("PlaceEquityOrder.EquityOrderRequest.limitPrice","3")
success = json.UpdateString("PlaceEquityOrder.EquityOrderRequest.quantity","4")
success = json.UpdateString("PlaceEquityOrder.EquityOrderRequest.symbol","ETFC")
success = json.UpdateString("PlaceEquityOrder.EquityOrderRequest.orderAction","BUY")
success = json.UpdateString("PlaceEquityOrder.EquityOrderRequest.priceType","LIMIT")
success = json.UpdateString("PlaceEquityOrder.EquityOrderRequest.marketSession","REGULAR")
success = json.UpdateString("PlaceEquityOrder.EquityOrderRequest.orderTerm","GOOD_FOR_DAY")
json.EmitCompact = 0
Debug.Print json.Emit()

' The above code builds the following JSON:

' 	{ 
' 	  "PlaceEquityOrder": { 
' 	    "-xmlns": "http://order.etws.etrade.com",
' 	    "EquityOrderRequest": { 
' 	      "accountId": "83405188",
' 	      "clientOrderId": "45",
' 	      "limitPrice": "3",
' 	      "quantity": "4",
' 	      "symbol": "ETFC",
' 	      "orderAction": "BUY",
' 	      "priceType": "LIMIT",
' 	      "marketSession": "REGULAR",
' 	      "orderTerm": "GOOD_FOR_DAY"
' 	    }
' 	  }
' 	}

' POST the JSON and get the response.
json.EmitCompact = 1
' Set the Accept property to get a JSON response.
http.Accept = "application/json"

' This example uses the sandbox URL.  The live URL is "https://etws.etrade.com/order/rest/placeequityorder"
Dim resp As ChilkatHttpResponse
Set resp = http.PostJson2("https://etwssandbox.etrade.com/order/sandbox/rest/placeequityorder","application/json",json.Emit())
If (http.LastMethodSuccess <> 1) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

' Examine the response status code.
Dim statusCode As Long
statusCode = resp.StatusCode
Debug.Print "Status Code = " & statusCode

' Load the JSON response body:
success = json.Load(resp.BodyStr)
json.EmitCompact = 0

' If the status code was not 200, then it was an error..
If (statusCode <> 200) Then
    Debug.Print json.Emit()
    Debug.Print "Equity order failed."
    Exit Sub
End If

Debug.Print json.Emit()

' To examine some information from the JSON:
Debug.Print "quantity: " & json.IntOf("PlaceEquityOrderResponse.EquityOrderResponse.quantity")
Debug.Print "msgDesc: " & json.StringOf("PlaceEquityOrderResponse.EquityOrderResponse.messageList.msgDesc")
' etc ..

' This is a sample response:
' 	{ 
' 	  "PlaceEquityOrderResponse": { 
' 	    "EquityOrderResponse": { 
' 	      "accountId": 83310056,
' 	      "allOrNone": false,
' 	      "estimatedCommission": 9.99,
' 	      "estimatedTotalAmount": 1909.99,
' 	      "messageList": { 
' 	        "msgDesc": "Your order was successfully entered during market hours.",
' 	        "msgCode": 1026
' 	      },
' 	      "orderNum": 277,
' 	      "orderTime": 1240982042179,
' 	      "quantity": 100,
' 	      "reserveOrder": false,
' 	      "reserveQuantity": 0,
' 	      "orderTerm": "GOOD_UNTIL_CANCEL",
' 	      "limitPrice": 18,
' 	      "stopPrice": 0,
' 	      "symbolDesc": "CISCO SYS INC COM",
' 	      "symbol": "CSCO",
' 	      "orderAction": "BUY",
' 	      "priceType": "LIMIT"
' 	    }
' 	  }
' 	}
' 

 

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