CreateSellLimit (Instrument instrument, double amount, double price, Account account, TimeInForce timeInForce)
method
Initiates NewOrderRequest object with operation sell and type limit with time in force option.
Syntax
public static NewOrderRequest CreateSellLimit (Instrument instrument,double amount,double price,Account account,TimeInForce timeInForce)
Parameters
instrument — Instrument
amount — double
price — double
account — Account
timeInForce — TimeInForce
Return
NewOrderRequest
Example
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace CreateSellLimitExamples
{
public class CreateSellLimitExamples : NETStrategy
{
Position[] All_pos;
Order[] All_ord;
public override void OnQuote()
{
//Check how much positions we have
All_pos = Positions.GetPositions();
All_ord = Orders.GetOrders(false);
if(All_pos.Length==0)
{
//There is no open positions, lets create SellLimit
if(All_ord.Length==0)
{
NewOrderRequest request = NewOrderRequest.CreateSellLimit(Instruments.Current,1,1975,Accounts.Current);
Orders.Send(request);
}
}
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.