You need to enable JavaScript in order to visit our site!
 
Logo PTMC
NAVIGATION
CANCEL
 
or via PTMC account
Restore password
or via PTMC account
Logo PTMC
NAVIGATION
or via PTMC account
Restore password
or via PTMC account
or via PTMC account
Restore password
or via PTMC account

StopLossOffset

property
Set price level of stop loss order.

Syntax

public double StopLossOffset { get; set; }

Example


using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;

namespace NewOrderRequestPropertiesExamples
{    
     public class NewOrderRequestPropertiesExamples : NETStrategy
     {
         [InputParameter("StopLoss offset", 0, 1, 999)] 
         public int Inp_SL_Offset = 110;
         
         public override void OnQuote()
         {
             //Create new order request
             NewOrderRequest request = new NewOrderRequest()
             {
                 Account = Accounts.Current,
                 Amount = 1,
                 Instrument = Instruments.Current,
                 MarketRange = 3,
                 Price = Instruments.Current.LastQuote.Ask,
                 Side = Operation.Buy,
                 Type = OrdersType.Market,
                 StopLossOffset = Inp_SL_Offset * Point
             };
             
             //Check how much positions we have
             Position[] allPositions = Positions.GetPositions();
             if(allPositions.Length == 0)
             {
                 //There is no open positions, lets create new
                 string id = Orders.Send(request);
                 Print($"Order id => {id}");
                 
                 Position pos = Positions.GetPositionById(id);
                 Print($"Price of current position => {pos?.CurrentPrice}");
                 Print($"Price of SL order =>  {pos?.StopLossOrder?.Price}");
             }
         }
     }
}
 
Discussion
Join PTMC community to post your comments
PTMC is a professional trading platform that combines all the best charting and analytical tools to trade on different financial markets. It is developed by PFSOFT UK LTD, a global provider of trading technology for banks & brokers
© 2024. PTMC is based on Protrader technology
PFSOFT UK LTD
71-75, Shelton Street,
Covent Garden,
London, WC2H9SQ,
United Kingdom
Support & Development
PFSOFT Ukraine
Office #701
Mechnikova Street, 10B
49000, Dnipro, Ukraine
Contact us
Phone: +380 56 740 30 01
E-mail: info@protrader.org
Skype: PTMC_support
Find more ways to contact
Join us in social networks