NewOrderRequest CLASS
Type of trade to be executed (BUY or SELL). SYNTAX public Operation Side { get; set; } EXAMPLE using System;
using System.Collections;
using...
Wed, May 2, 2018 at 8:03 PM
Set price level of stop loss order. SYNTAX public double StopLossOffset { get; set; } EXAMPLE using System;
using System.Collections;
using ...
Wed, May 2, 2018 at 8:04 PM
Stop Price for the StopLimit order. SYNTAX public double StopPrice { get; set; } EXAMPLE using System;
using System.Collections;
using Sy...
Wed, May 2, 2018 at 8:05 PM
Set price level of take profit order. SYNTAX public double TakeProfitOffset { get; set; } EXAMPLE using System;
using System.Collections;
us...
Wed, May 2, 2018 at 8:07 PM
Order's Time-in-force. SYNTAX public TimeInForce TimeInForce { get; set; } EXAMPLE using System;
using System.Collections;
using System....
Wed, May 2, 2018 at 8:08 PM
Set offset in points to Trailing Stop order. SYNTAX public double TrStopOffset { get; set; } EXAMPLE using System;
using System.Collections;...
Wed, May 2, 2018 at 8:09 PM
The type of order. SYNTAX public OrdersType Type { get; set; } EXAMPLE using System;
using System.Collections;
using System.Collections.Gene...
Wed, May 2, 2018 at 8:10 PM
Creates empty request. SYNTAX public NewOrderRequest () EXAMPLE The following example shows how to creates and initialize a new order reque...
Wed, May 2, 2018 at 8:31 PM
(Instrument instrument, Operation side, double amount, double price, double stopPrice, OrdersType orderType, Account account, TimeInForce timeInForce, DateT...
Wed, May 2, 2018 at 8:41 PM
Creates request with all obligated parameters. SYNTAX public NewOrderRequest (Instrument instrument,Operation side,double amount,double price,double st...
Sat, May 5, 2018 at 9:21 AM