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 DJ888, Yesterday, 06:09 PM
        2 responses
        9 views
        0 likes
        Last Post DJ888
        by DJ888
         
        Started by jeronymite, 04-12-2024, 04:26 PM
        3 responses
        40 views
        0 likes
        Last Post jeronymite  
        Started by bill2023, Today, 08:51 AM
        2 responses
        16 views
        0 likes
        Last Post bill2023  
        Started by sidlercom80, 10-28-2023, 08:49 AM
        167 responses
        2,260 views
        0 likes
        Last Post jeronymite  
        Started by warreng86, 11-10-2020, 02:04 PM
        7 responses
        1,362 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Working...
        X