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 sjsj2732, Yesterday, 04:31 AM
        0 responses
        36 views
        0 likes
        Last Post sjsj2732  
        Started by NullPointStrategies, 03-13-2026, 05:17 AM
        0 responses
        287 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        287 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        133 views
        1 like
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        95 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Working...
        X