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

DataFlex 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

 

 

 

(DataFlex) 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

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Handle hoJson
    Boolean iSuccess
    Handle hoXml
    String sXmlContent
    String sEndpointUrl
    Variant vResp
    Handle hoResp
    Integer iStatusCode
    String sTagPath
    String sOrderType
    String sTotalOrderValue
    String sOrderTerm
    String sPriceType
    String sLimitPrice
    Integer iStopPrice
    String sMarketSession
    String sAllOrNone
    String sSymbol
    String sSecurityType
    String sSymbolDescription
    String sOrderAction
    String sQuantityType
    Integer iQuantity
    String sCancelQuantity
    String sReserveOrder
    String sReserveQuantity
    Integer i
    Integer iCount_i
    Integer iCode
    String sDescription
    String sV_type
    String sEgQual
    String sEstimatedCommission
    String sEstimatedTotalAmount
    Integer iNetPrice
    Integer iNetBid
    Integer iNetAsk
    Integer iGcd
    Integer iPreviewId
    String sPreviewTime
    String sDstFlag
    Integer iAccountId
    Integer iOptionLevelCd
    String sMarginLevelCd
    String sAhDisclosureFlag
    String sAoDisclosureFlag
    String sConditionalDisclosureFlag
    String sEhDisclosureFlag
    String sMarginBuyingPower
    String sTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Set ComOAuth1 Of hoHttp To True
    Set ComOAuthVerifier Of hoHttp To ""
    Set ComOAuthConsumerKey Of hoHttp To "ETRADE_CONSUMER_KEY"
    Set ComOAuthConsumerSecret Of hoHttp To "ETRADE_CONSUMER_SECRET"

    // Load the access token previously obtained via the OAuth1 3-Legged Authorization examples Step1 and Step2.
    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComLoadFile Of hoJson "qa_data/tokens/etrade.json" To iSuccess
    If (iSuccess <> True) Begin
        Showln "Failed to load OAuth1 token"
        Procedure_Return
    End

    Get ComStringOf Of hoJson "oauth_token" To sTemp1
    Set ComOAuthToken Of hoHttp To sTemp1
    Get ComStringOf Of hoJson "oauth_token_secret" To sTemp1
    Set ComOAuthTokenSecret Of hoHttp To sTemp1

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

    Get Create (RefClass(cComChilkatXml)) To hoXml
    If (Not(IsComObjectCreated(hoXml))) Begin
        Send CreateComObject of hoXml
    End
    Set ComTag Of hoXml To "PreviewOrderRequest"
    Send ComUpdateChildContent To hoXml "orderType" "EQ"
    Send ComUpdateChildContent To hoXml "clientOrderId" "sdfer333"
    Send ComUpdateChildContent To hoXml "Order|allOrNone" "false"
    Send ComUpdateChildContent To hoXml "Order|priceType" "LIMIT"
    Send ComUpdateChildContent To hoXml "Order|orderTerm" "GOOD_FOR_DAY"
    Send ComUpdateChildContent To hoXml "Order|marketSession" "REGULAR"
    Send ComUpdateChildContent To hoXml "Order|stopPrice" ""
    Send ComUpdateChildContent To hoXml "Order|limitPrice" "188.51"
    Send ComUpdateChildContent To hoXml "Order|Instrument|Product|securityType" "EQ"
    Send ComUpdateChildContent To hoXml "Order|Instrument|Product|symbol" "FB"
    Send ComUpdateChildContent To hoXml "Order|Instrument|orderAction" "BUY"
    Send ComUpdateChildContent To hoXml "Order|Instrument|quantityType" "QUANTITY"
    Send ComUpdateChildContent To hoXml "Order|Instrument|quantity" "10"

    Get ComGetXml Of hoXml To sXmlContent
    Move "https://apisb.etrade.com/v1/accounts/{accountIdKey}/orders/preview" To sEndpointUrl

    Get ComPostXml Of hoHttp sEndpointUrl sXmlContent "utf-8" To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 <> True) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // A 200 status code indicates success.
    Get ComStatusCode Of hoResp To iStatusCode
    Showln "statusCode = " iStatusCode

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

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

    Get ComBodyStr Of hoResp To sTemp1
    Get ComLoadXml Of hoXml sTemp1 To iSuccess
    Send Destroy of hoResp

    Get ComGetChildContent Of hoXml "orderType" To sOrderType
    Get ComGetChildContent Of hoXml "totalOrderValue" To sTotalOrderValue
    Get ComGetChildContent Of hoXml "Order|orderTerm" To sOrderTerm
    Get ComGetChildContent Of hoXml "Order|priceType" To sPriceType
    Get ComGetChildContent Of hoXml "Order|limitPrice" To sLimitPrice
    Get ComGetChildIntValue Of hoXml "Order|stopPrice" To iStopPrice
    Get ComGetChildContent Of hoXml "Order|marketSession" To sMarketSession
    Get ComGetChildContent Of hoXml "Order|allOrNone" To sAllOrNone
    Get ComGetChildContent Of hoXml "Order|Instrument|Product|symbol" To sSymbol
    Get ComGetChildContent Of hoXml "Order|Instrument|Product|securityType" To sSecurityType
    Get ComGetChildContent Of hoXml "Order|Instrument|symbolDescription" To sSymbolDescription
    Get ComGetChildContent Of hoXml "Order|Instrument|orderAction" To sOrderAction
    Get ComGetChildContent Of hoXml "Order|Instrument|quantityType" To sQuantityType
    Get ComGetChildIntValue Of hoXml "Order|Instrument|quantity" To iQuantity
    Get ComGetChildContent Of hoXml "Order|Instrument|cancelQuantity" To sCancelQuantity
    Get ComGetChildContent Of hoXml "Order|Instrument|reserveOrder" To sReserveOrder
    Get ComGetChildContent Of hoXml "Order|Instrument|reserveQuantity" To sReserveQuantity
    Move 0 To i
    Get ComNumChildrenHavingTag Of hoXml "Order|messages|Message" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoXml To i
        Get ComGetChildIntValue Of hoXml "Order|messages|Message[i]|code" To iCode
        Get ComGetChildContent Of hoXml "Order|messages|Message[i]|description" To sDescription
        Get ComGetChildContent Of hoXml "Order|messages|Message[i]|type" To sV_type
        Move i + 1 To i
    Loop

    Get ComGetChildContent Of hoXml "Order|egQual" To sEgQual
    Get ComGetChildContent Of hoXml "Order|estimatedCommission" To sEstimatedCommission
    Get ComGetChildContent Of hoXml "Order|estimatedTotalAmount" To sEstimatedTotalAmount
    Get ComGetChildIntValue Of hoXml "Order|netPrice" To iNetPrice
    Get ComGetChildIntValue Of hoXml "Order|netBid" To iNetBid
    Get ComGetChildIntValue Of hoXml "Order|netAsk" To iNetAsk
    Get ComGetChildIntValue Of hoXml "Order|gcd" To iGcd
    Get ComGetChildIntValue Of hoXml "PreviewIds|previewId" To iPreviewId
    Get ComGetChildContent Of hoXml "previewTime" To sPreviewTime
    Get ComGetChildContent Of hoXml "dstFlag" To sDstFlag
    Get ComGetChildIntValue Of hoXml "accountId" To iAccountId
    Get ComGetChildIntValue Of hoXml "optionLevelCd" To iOptionLevelCd
    Get ComGetChildContent Of hoXml "marginLevelCd" To sMarginLevelCd
    Get ComGetChildContent Of hoXml "Disclosure|ahDisclosureFlag" To sAhDisclosureFlag
    Get ComGetChildContent Of hoXml "Disclosure|aoDisclosureFlag" To sAoDisclosureFlag
    Get ComGetChildContent Of hoXml "Disclosure|conditionalDisclosureFlag" To sConditionalDisclosureFlag
    Get ComGetChildContent Of hoXml "Disclosure|ehDisclosureFlag" To sEhDisclosureFlag
    Get ComGetChildContent Of hoXml "marginBuyingPower" To sMarginBuyingPower

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


End_Procedure

 

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