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 FoxPro 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 FoxPro) ETrade v1 Preview Order

Gets the order details for a selected brokerage account based on the search criteria provided.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

LOCAL loHttp
LOCAL loJson
LOCAL lnSuccess
LOCAL loXml
LOCAL lcXmlContent
LOCAL lcEndpointUrl
LOCAL loResp
LOCAL lnStatusCode
LOCAL lcTagPath
LOCAL lcOrderType
LOCAL lcTotalOrderValue
LOCAL lcOrderTerm
LOCAL lcPriceType
LOCAL lcLimitPrice
LOCAL lnStopPrice
LOCAL lcMarketSession
LOCAL lcAllOrNone
LOCAL lcSymbol
LOCAL lcSecurityType
LOCAL lcSymbolDescription
LOCAL lcOrderAction
LOCAL lcQuantityType
LOCAL lnQuantity
LOCAL lcCancelQuantity
LOCAL lcReserveOrder
LOCAL lcReserveQuantity
LOCAL i
LOCAL lnCount_i
LOCAL lnCode
LOCAL lcDescription
LOCAL lcV_type
LOCAL lcEgQual
LOCAL lcEstimatedCommission
LOCAL lcEstimatedTotalAmount
LOCAL lnNetPrice
LOCAL lnNetBid
LOCAL lnNetAsk
LOCAL lnGcd
LOCAL lnPreviewId
LOCAL lcPreviewTime
LOCAL lcDstFlag
LOCAL lnAccountId
LOCAL lnOptionLevelCd
LOCAL lcMarginLevelCd
LOCAL lcAhDisclosureFlag
LOCAL lcAoDisclosureFlag
LOCAL lcConditionalDisclosureFlag
LOCAL lcEhDisclosureFlag
LOCAL lcMarginBuyingPower

* This example requires the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

loHttp = CreateObject('Chilkat_9_5_0.Http')

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

* Load the access token previously obtained via the OAuth1 3-Legged Authorization examples Step1 and Step2.
loJson = CreateObject('Chilkat_9_5_0.JsonObject')
lnSuccess = loJson.LoadFile("qa_data/tokens/etrade.json")
IF (lnSuccess <> 1) THEN
    ? "Failed to load OAuth1 token"
    RELEASE loHttp
    RELEASE loJson
    CANCEL
ENDIF

loHttp.OAuthToken = loJson.StringOf("oauth_token")
loHttp.OAuthTokenSecret = loJson.StringOf("oauth_token_secret")

* See the ETrade v1 API documentation HERE.

* Sample XML Request
* Use this online tool to generate the code from sample XML: 
* Generate Code to Create XML

* <?xml version="1.0" encoding="UTF-8"?>
* <PreviewOrderRequest>
*    <orderType>EQ</orderType>
*    <clientOrderId>sdfer333</clientOrderId>
*    <Order>
*       <allOrNone>false</allOrNone>
*       <priceType>LIMIT</priceType>
*       <orderTerm>GOOD_FOR_DAY</orderTerm>
*       <marketSession>REGULAR</marketSession>
*       <stopPrice />
*       <limitPrice>188.51</limitPrice>
*       <Instrument>
*          <Product>
*             <securityType>EQ</securityType>
*             <symbol>FB</symbol>
*          </Product>
*          <orderAction>BUY</orderAction>
*          <quantityType>QUANTITY</quantityType>
*          <quantity>10</quantity>
*       </Instrument>
*    </Order>
* </PreviewOrderRequest>

loXml = CreateObject('Chilkat_9_5_0.Xml')
loXml.Tag = "PreviewOrderRequest"
loXml.UpdateChildContent("orderType","EQ")
loXml.UpdateChildContent("clientOrderId","sdfer333")
loXml.UpdateChildContent("Order|allOrNone","false")
loXml.UpdateChildContent("Order|priceType","LIMIT")
loXml.UpdateChildContent("Order|orderTerm","GOOD_FOR_DAY")
loXml.UpdateChildContent("Order|marketSession","REGULAR")
loXml.UpdateChildContent("Order|stopPrice","")
loXml.UpdateChildContent("Order|limitPrice","188.51")
loXml.UpdateChildContent("Order|Instrument|Product|securityType","EQ")
loXml.UpdateChildContent("Order|Instrument|Product|symbol","FB")
loXml.UpdateChildContent("Order|Instrument|orderAction","BUY")
loXml.UpdateChildContent("Order|Instrument|quantityType","QUANTITY")
loXml.UpdateChildContent("Order|Instrument|quantity","10")

lcXmlContent = loXml.GetXml()
lcEndpointUrl = "https://apisb.etrade.com/v1/accounts/{accountIdKey}/orders/preview"

loResp = loHttp.PostXml(lcEndpointUrl,lcXmlContent,"utf-8")
IF (loHttp.LastMethodSuccess <> 1) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loJson
    RELEASE loXml
    CANCEL
ENDIF

* A 200 status code indicates success.
lnStatusCode = loResp.StatusCode
? "statusCode = " + STR(lnStatusCode)

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

* A sample XML response is shown below...

loXml.LoadXml(loResp.BodyStr)
RELEASE loResp

lcOrderType = loXml.GetChildContent("orderType")
lcTotalOrderValue = loXml.GetChildContent("totalOrderValue")
lcOrderTerm = loXml.GetChildContent("Order|orderTerm")
lcPriceType = loXml.GetChildContent("Order|priceType")
lcLimitPrice = loXml.GetChildContent("Order|limitPrice")
lnStopPrice = loXml.GetChildIntValue("Order|stopPrice")
lcMarketSession = loXml.GetChildContent("Order|marketSession")
lcAllOrNone = loXml.GetChildContent("Order|allOrNone")
lcSymbol = loXml.GetChildContent("Order|Instrument|Product|symbol")
lcSecurityType = loXml.GetChildContent("Order|Instrument|Product|securityType")
lcSymbolDescription = loXml.GetChildContent("Order|Instrument|symbolDescription")
lcOrderAction = loXml.GetChildContent("Order|Instrument|orderAction")
lcQuantityType = loXml.GetChildContent("Order|Instrument|quantityType")
lnQuantity = loXml.GetChildIntValue("Order|Instrument|quantity")
lcCancelQuantity = loXml.GetChildContent("Order|Instrument|cancelQuantity")
lcReserveOrder = loXml.GetChildContent("Order|Instrument|reserveOrder")
lcReserveQuantity = loXml.GetChildContent("Order|Instrument|reserveQuantity")
i = 0
lnCount_i = loXml.NumChildrenHavingTag("Order|messages|Message")
DO WHILE i < lnCount_i
    loXml.I = i
    lnCode = loXml.GetChildIntValue("Order|messages|Message[i]|code")
    lcDescription = loXml.GetChildContent("Order|messages|Message[i]|description")
    lcV_type = loXml.GetChildContent("Order|messages|Message[i]|type")
    i = i + 1
ENDDO
lcEgQual = loXml.GetChildContent("Order|egQual")
lcEstimatedCommission = loXml.GetChildContent("Order|estimatedCommission")
lcEstimatedTotalAmount = loXml.GetChildContent("Order|estimatedTotalAmount")
lnNetPrice = loXml.GetChildIntValue("Order|netPrice")
lnNetBid = loXml.GetChildIntValue("Order|netBid")
lnNetAsk = loXml.GetChildIntValue("Order|netAsk")
lnGcd = loXml.GetChildIntValue("Order|gcd")
lnPreviewId = loXml.GetChildIntValue("PreviewIds|previewId")
lcPreviewTime = loXml.GetChildContent("previewTime")
lcDstFlag = loXml.GetChildContent("dstFlag")
lnAccountId = loXml.GetChildIntValue("accountId")
lnOptionLevelCd = loXml.GetChildIntValue("optionLevelCd")
lcMarginLevelCd = loXml.GetChildContent("marginLevelCd")
lcAhDisclosureFlag = loXml.GetChildContent("Disclosure|ahDisclosureFlag")
lcAoDisclosureFlag = loXml.GetChildContent("Disclosure|aoDisclosureFlag")
lcConditionalDisclosureFlag = loXml.GetChildContent("Disclosure|conditionalDisclosureFlag")
lcEhDisclosureFlag = loXml.GetChildContent("Disclosure|ehDisclosureFlag")
lcMarginBuyingPower = loXml.GetChildContent("marginBuyingPower")

* Sample XML Response

* <?xml version="1.0" encoding="UTF-8"?>
* <PreviewOrderResponse>
*    <orderType>EQ</orderType>
*    <totalOrderValue>1892.05</totalOrderValue>
*    <Order>
*       <orderTerm>GOOD_FOR_DAY</orderTerm>
*       <priceType>LIMIT</priceType>
*       <limitPrice>188.51</limitPrice>
*       <stopPrice>0</stopPrice>
*       <marketSession>REGULAR</marketSession>
*       <allOrNone>false</allOrNone>
*       <Instrument>
*          <Product>
*             <symbol>FB</symbol>
*             <securityType>EQ</securityType>
*          </Product>
*          <symbolDescription>FACEBOOK INC CL A</symbolDescription>
*          <orderAction>BUY</orderAction>
*          <quantityType>QUANTITY</quantityType>
*          <quantity>10</quantity>
*          <cancelQuantity>0.0</cancelQuantity>
*          <reserveOrder>true</reserveOrder>
*          <reserveQuantity>0.0</reserveQuantity>
*       </Instrument>
*       <messages>
*          <Message>
*             <code>1042</code>
*             <description>200|You have an existing open order for this security on the same side of the market. If you did not intend to place a second order for this security, please modify your order now.</description>
*             <type>WARNING</type>
*          </Message>
*          <Message>
*             <code>3093</code>
*             <description>Position Concentrated.</description>
*             <type>WARNING</type>
*          </Message>
*       </messages>
*       <egQual>EG_QUAL_NOT_A_MARKET_ORDER</egQual>
*       <estimatedCommission>6.95</estimatedCommission>
*       <estimatedTotalAmount>1892.05</estimatedTotalAmount>
*       <netPrice>0</netPrice>
*       <netBid>0</netBid>
*       <netAsk>0</netAsk>
*       <gcd>0</gcd>
*       <ratio />
*    </Order>
*    <PreviewIds>
*       <previewId>1020563279</previewId>
*    </PreviewIds>
*    <previewTime>1529018458516</previewTime>
*    <dstFlag>true</dstFlag>
*    <accountId>84246841</accountId>
*    <optionLevelCd>4</optionLevelCd>
*    <marginLevelCd>MARGIN_TRADING_ALLOWED</marginLevelCd>
*    <Disclosure>
*       <ahDisclosureFlag>false</ahDisclosureFlag>
*       <aoDisclosureFlag>false</aoDisclosureFlag>
*       <conditionalDisclosureFlag>true</conditionalDisclosureFlag>
*       <ehDisclosureFlag>false</ehDisclosureFlag>
*    </Disclosure>
*    <marginBuyingPower>86758.05</marginBuyingPower>
* </PreviewOrderResponse>

RELEASE loHttp
RELEASE loJson
RELEASE loXml


 

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