Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Stop and Limit Orders

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Stop and Limit Orders

    I saw this logic in several strategies on the NT site. Why is the stop loss and profit target calls part of the initialize event? I don't think a position is already open. Just trying to understand how things are done in NT.

    protected override void Initialize()
    {
    SMA(Fast).Plots[0].Pen.Color = Color.Orange;
    SMA(Slow).Plots[0].Pen.Color = Color.Green;

    Add(SMA(Fast));
    Add(SMA(Slow));

    SetProfitTarget("BuyMkt", CalculationMode.Ticks, LongTarget);
    SetStopLoss("BuyMkt", CalculationMode.Ticks, LongStop, false);
    SetProfitTarget("SellMkt", CalculationMode.Ticks, ShortTarget);
    SetStopLoss("SellMkt", CalculationMode.Ticks, ShortStop, false);

    CalculateOnBarClose = true;
    }

    #2
    Hello RiversideDude,

    Placing the Set methods in Initialize just creates a static always used value. You can also call Set methods from OnBarUpdate to create dynamic prices or updates to orders as well.

    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Today, 05:17 AM
    0 responses
    52 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    130 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    70 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    44 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    48 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X