Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 andrewtrades, Today, 04:57 PM
        1 response
        6 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by chbruno, Today, 04:10 PM
        0 responses
        5 views
        0 likes
        Last Post chbruno
        by chbruno
         
        Started by josh18955, 03-25-2023, 11:16 AM
        6 responses
        436 views
        0 likes
        Last Post Delerium  
        Started by FAQtrader, Today, 03:35 PM
        0 responses
        7 views
        0 likes
        Last Post FAQtrader  
        Started by rocketman7, Today, 09:41 AM
        5 responses
        19 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Working...
        X