Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Problem with Multi Time Frame

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

    Problem with Multi Time Frame

    Hi
    I am trying to trade with 1000 and 144 Tick charts. 144 is my primary bars. No order is create at all when I insert " Add(PeriodType.Tick, 1000);".

    Could anyone advise? Thanks

    My code below :

    protected override void Initialize()
    {
    Add(LeaderOfMACD(12, 26, 9));
    Add(Stochastics(7, 14, 3));
    Add(StochasticsOverlay(7, 14, 3));
    Add(EMA(20));
    Add(PeriodType.Tick, 1000);
    SetStopLoss("", CalculationMode.Ticks, stopLossPts , false);
    SetProfitTarget("", CalculationMode.Ticks, profitPts );
    CalculateOnBarClose = true;
    }

    protected override void OnBarUpdate()
    {
    if (CrossBelow(LeaderOfMACD(BarsArray[1], 12, 26, 9), LeaderOfMACD(BarsArray[1], 12, 26, 9).Avg, 1))
    {
    boolCrossover = true ;
    }
    if (boolCrossover == true
    && CrossBelow(LeaderOfMACD(12, 26, 9), LeaderOfMACD(12, 26, 9).Avg, 1))
    {
    txtRemark = "MACD 1000 and 144 Tick Sell " + DefaultQuantity + " Contract";
    EnterShort(DefaultQuantity, txtRemark);
    boolCrossover = false;
    }
    if (Position.MarketPosition == MarketPosition.Short
    && Position.GetProfitLoss(Close[0], PerformanceUnit.Currency) > 100)
    {
    ExitShortExit Short " + Position.Quantity + " contracts");
    }

    }

    #2
    Hello,

    Thank you for your note.

    We recieved the message and someone will follow up with you at the latest Monday.

    Thank you for your patience.

    Comment


      #3
      Kevin,

      If you add another series into your strategy you will then need to filter your strategy to BarsInProgress. You will also need to ensure you actually have enough data for all bar series objects before your strategy will run.
      Josh P.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by burtoninlondon, Today, 12:38 AM
      0 responses
      9 views
      0 likes
      Last Post burtoninlondon  
      Started by AaronKoRn, Yesterday, 09:49 PM
      0 responses
      14 views
      0 likes
      Last Post AaronKoRn  
      Started by carnitron, Yesterday, 08:42 PM
      0 responses
      11 views
      0 likes
      Last Post carnitron  
      Started by strategist007, Yesterday, 07:51 PM
      0 responses
      13 views
      0 likes
      Last Post strategist007  
      Started by StockTrader88, 03-06-2021, 08:58 AM
      44 responses
      3,983 views
      3 likes
      Last Post jhudas88  
      Working...
      X