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

Lianja Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(Lianja) ETrade Place Order

The Place Order API is used to submit an order after it has been successfully previewed.

For more information, see https://apisb.etrade.com/docs/api/order/api-order-v1.html#/definition/orderPlace

Chilkat Lianja Extension Download

Chilkat Lianja Extension

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

loHttp = createobject("CkHttp")

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

// Load the access token previously obtained via the OAuth1 Authorization
loJsonToken = createobject("CkJsonObject")
llSuccess = loJsonToken.LoadFile("qa_data/tokens/etrade.json")
if (llSuccess <> .T.) then
    ? "Failed to load OAuth1 token"
    release loHttp
    release loJsonToken
    return
endif

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

lcSandboxUrl = "https://apisb.etrade.com/v1/accounts/{$accountIdKey}/orders/place"
lcLiveUrl = "https://api.etrade.com/v1/accounts/{$accountIdKey}/orders/place"

loHttp.SetUrlVar("accountIdKey","6_Dpy0rmuQ9cu9IbTfvF2A")

// Send a POST with the following XML body

// Use this online tool to generate the code from sample XML: 
// Generate Code to Create XML

// <PlaceOrderRequest>
//    <orderType>EQ</orderType>
//    <clientOrderId>sd464333</clientOrderId>
//    <PreviewIds>
//       <previewId>730206520</previewId>
//    </PreviewIds>
//    <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>150</quantity>
//       </Instrument>
//    </Order>
// </PlaceOrderRequest>

loXml = createobject("CkXml")
loXml.Tag = "PlaceOrderRequest"
loXml.UpdateChildContent("orderType","EQ")
loXml.UpdateChildContent("clientOrderId","sd464333")
loXml.UpdateChildContent("PreviewIds|previewId","730206520")
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","150")
loXml.EmitCompact = .T.

loHttp.SetRequestHeader("Content-Type","application/xml")

loResp = loHttp.PostXml(lcSandboxUrl,loXml.GetXml(),"utf-8")
if (loHttp.LastMethodSuccess <> .T.) then
    ? loHttp.LastErrorText
    release loHttp
    release loJsonToken
    release loXml
    return
endif

// Make sure a successful response was received.
if (loResp.StatusCode > 200) then
    ? loResp.StatusLine
    ? loResp.Header
    ? loResp.BodyStr
    release loHttp
    release loJsonToken
    release loXml
    return
endif

// Sample XML response:

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

// <PlaceOrderResponse>
//    <orderType>EQ</orderType>
//    <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>150</quantity>
//          <cancelQuantity>0.0</cancelQuantity>
//          <reserveOrder>true</reserveOrder>
//          <reserveQuantity>0.0</reserveQuantity>
//       </Instrument>
//       <messages>
//          <Message>
//             <code>1027</code>
//             <description>200|The market was closed when we received your order. It has been entered into our system and will be reviewed prior to market open on the next regular trading day. After market open, please check to make sure your order was accepted.</description>
//             <type>WARNING</type>
//          </Message>
//       </messages>
//       <egQual>EG_QUAL_NOT_A_MARKET_ORDER</egQual>
//       <estimatedCommission>6.95</estimatedCommission>
//       <estimatedTotalAmount>28283.45</estimatedTotalAmount>
//       <netPrice>0</netPrice>
//       <netBid>0</netBid>
//       <netAsk>0</netAsk>
//       <gcd>0</gcd>
//       <ratio />
//    </Order>
//    <dstFlag>true</dstFlag>
//    <optionLevelCd>4</optionLevelCd>
//    <marginLevelCd>MARGIN_TRADING_ALLOWED</marginLevelCd>
//    <OrderIds>
//       <orderId>5</orderId>
//    </OrderIds>
//    <placedTime>1528764717641</placedTime>
//    <accountId>84312767</accountId>
// </PlaceOrderResponse>

loXml.LoadXml(loResp.BodyStr)
? loXml.GetXml()

lcOrderType = loXml.GetChildContent("orderType")
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")
lnCode = loXml.GetChildIntValue("Order|messages|Message|code")
lcDescription = loXml.GetChildContent("Order|messages|Message|description")
lcV_type = loXml.GetChildContent("Order|messages|Message|type")
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")
lcDstFlag = loXml.GetChildContent("dstFlag")
lnOptionLevelCd = loXml.GetChildIntValue("optionLevelCd")
lcMarginLevelCd = loXml.GetChildContent("marginLevelCd")
lnOrderId = loXml.GetChildIntValue("OrderIds|orderId")
lcPlacedTime = loXml.GetChildContent("placedTime")
lnAccountId = loXml.GetChildIntValue("accountId")

? "Success."


release loHttp
release loJsonToken
release loXml

 

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