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 Karado58, 11-26-2012, 02:57 PM
        8 responses
        14,828 views
        0 likes
        Last Post Option Whisperer  
        Started by Option Whisperer, Today, 09:05 AM
        0 responses
        1 view
        0 likes
        Last Post Option Whisperer  
        Started by cre8able, Yesterday, 01:16 PM
        3 responses
        11 views
        0 likes
        Last Post cre8able  
        Started by Harry, 05-02-2018, 01:54 PM
        10 responses
        3,204 views
        0 likes
        Last Post tharton3  
        Started by ChartTourist, Today, 08:22 AM
        0 responses
        6 views
        0 likes
        Last Post ChartTourist  
        Working...
        X