Rust
Rust
ETrade Place Order
See more ETrade Examples
The Place Order API is used to submit an order after it has been successfully previewed.Chilkat Rust Downloads
// This requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = chilkat::Http::new();
http.set_o_auth1(true);
http.set_o_auth_verifier("");
http.set_o_auth_consumer_key("ETRADE_CONSUMER_KEY");
http.set_o_auth_consumer_secret("ETRADE_CONSUMER_SECRET");
// Load the access token previously obtained via the OAuth1 Authorization
let json_token = chilkat::JsonObject::new();
if json_token.load_file("qa_data/tokens/etrade.json").is_err() {
println!("Failed to load OAuth1 token");
return;
}
http.set_o_auth_token(&json_token.string_of("oauth_token").unwrap_or_default());
http.set_o_auth_token_secret(&json_token.string_of("oauth_token_secret").unwrap_or_default());
let sandbox_url = "https://apisb.etrade.com/v1/accounts/{$accountIdKey}/orders/place".to_string();
let live_url = "https://api.etrade.com/v1/accounts/{$accountIdKey}/orders/place".to_string();
let _ = http.set_url_var("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>
let xml = chilkat::Xml::new();
xml.set_tag("PlaceOrderRequest");
xml.update_child_content("orderType", "EQ");
xml.update_child_content("clientOrderId", "sd464333");
xml.update_child_content("PreviewIds|previewId", "730206520");
xml.update_child_content("Order|allOrNone", "false");
xml.update_child_content("Order|priceType", "LIMIT");
xml.update_child_content("Order|orderTerm", "GOOD_FOR_DAY");
xml.update_child_content("Order|marketSession", "REGULAR");
xml.update_child_content("Order|stopPrice", "");
xml.update_child_content("Order|limitPrice", "188.51");
xml.update_child_content("Order|Instrument|Product|securityType", "EQ");
xml.update_child_content("Order|Instrument|Product|symbol", "FB");
xml.update_child_content("Order|Instrument|orderAction", "BUY");
xml.update_child_content("Order|Instrument|quantityType", "QUANTITY");
xml.update_child_content("Order|Instrument|quantity", "150");
xml.set_emit_compact(true);
let resp = chilkat::HttpResponse::new();
if http.http_str("POST", &sandbox_url, &xml.get_xml().unwrap_or_default(), "utf-8", "application/xml", &resp).is_err() {
println!("{}", http.last_error_text());
return;
}
// Make sure a successful response was received.
if resp.status_code() > 200 {
println!("{}", resp.status_line());
println!("{}", resp.header());
println!("{}", resp.body_str());
return;
}
// 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>
let _ = xml.load_xml(&resp.body_str());
println!("{}", xml.get_xml().unwrap_or_default());
let order_type = xml.get_child_content("orderType").unwrap_or_default();
let order_term = xml.get_child_content("Order|orderTerm").unwrap_or_default();
let price_type = xml.get_child_content("Order|priceType").unwrap_or_default();
let limit_price = xml.get_child_content("Order|limitPrice").unwrap_or_default();
let stop_price = xml.get_child_int_value("Order|stopPrice");
let market_session = xml.get_child_content("Order|marketSession").unwrap_or_default();
let all_or_none = xml.get_child_content("Order|allOrNone").unwrap_or_default();
let symbol = xml.get_child_content("Order|Instrument|Product|symbol").unwrap_or_default();
let security_type = xml.get_child_content("Order|Instrument|Product|securityType").unwrap_or_default();
let symbol_description = xml.get_child_content("Order|Instrument|symbolDescription").unwrap_or_default();
let order_action = xml.get_child_content("Order|Instrument|orderAction").unwrap_or_default();
let quantity_type = xml.get_child_content("Order|Instrument|quantityType").unwrap_or_default();
let quantity = xml.get_child_int_value("Order|Instrument|quantity");
let cancel_quantity = xml.get_child_content("Order|Instrument|cancelQuantity").unwrap_or_default();
let reserve_order = xml.get_child_content("Order|Instrument|reserveOrder").unwrap_or_default();
let reserve_quantity = xml.get_child_content("Order|Instrument|reserveQuantity").unwrap_or_default();
let code = xml.get_child_int_value("Order|messages|Message|code");
let description = xml.get_child_content("Order|messages|Message|description").unwrap_or_default();
let v_type = xml.get_child_content("Order|messages|Message|type").unwrap_or_default();
let eg_qual = xml.get_child_content("Order|egQual").unwrap_or_default();
let estimated_commission = xml.get_child_content("Order|estimatedCommission").unwrap_or_default();
let estimated_total_amount = xml.get_child_content("Order|estimatedTotalAmount").unwrap_or_default();
let net_price = xml.get_child_int_value("Order|netPrice");
let net_bid = xml.get_child_int_value("Order|netBid");
let net_ask = xml.get_child_int_value("Order|netAsk");
let gcd = xml.get_child_int_value("Order|gcd");
let dst_flag = xml.get_child_content("dstFlag").unwrap_or_default();
let option_level_cd = xml.get_child_int_value("optionLevelCd");
let margin_level_cd = xml.get_child_content("marginLevelCd").unwrap_or_default();
let order_id = xml.get_child_int_value("OrderIds|orderId");
let placed_time = xml.get_child_content("placedTime").unwrap_or_default();
let account_id = xml.get_child_int_value("accountId");
println!("Success.");