Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Ninjascript logic and Live Orders

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

    Ninjascript logic and Live Orders

    couple of questions before i test live...

    1. will broker(gain) accept the modifications so close together?
    2. will the last line set profit target for all signals? future entries that is.

    EntryHandling = unique entries , entries per direction 3, quantity set by strat.

    Thanks in advance guys

    SetTrailStop("LE1", CalculationMode.Ticks, MyInitLoss, false);
    SetTrailStop(
    "LE2", CalculationMode.Ticks, MyInitLoss, false);
    SetTrailStop(
    "LE3", CalculationMode.Ticks, MyInitLoss, false);
    SetTrailStop(
    "SE1", CalculationMode.Ticks, MyInitLoss, false);
    SetTrailStop(
    "SE2", CalculationMode.Ticks, MyInitLoss, false);
    SetTrailStop(
    "SE3", CalculationMode.Ticks, MyInitLoss, false);
    SetProfitTarget(
    "", CalculationMode.Ticks, MyInitTakeProfit);


    #2
    1) Not sure since I have not used GAIN.
    2) Your SetProfitTarget() will modify all future profit targets that have the entry signal name "". If you want it to apply to all orders remove the string parameter completely and use this syntax instead:
    SetProfitTarget(CalculationMode mode, double value)
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      NT queues changes and sends them when GAIN can accept them. Should not be a problem.
      RayNinjaTrader Customer Service

      Comment


        #4
        PERFECT! Thank you both.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        569 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        330 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        548 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        548 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X