Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

I will Develop your Indicator or Strategy for FREE

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • neilzep
    replied
    Fat tails does that alot....BMT is full of 'his' work. Isnt that true Fats?

    Leave a comment:


  • nicosxm
    replied
    Originally posted by Harry View Post
    If you had done a search for Trrader's Dynamic Index, you would have found this post.



    I am the author of the indicator and I do not mind to share it.
    I thought Dean Malone was the author of this Indicator.....

    nicosxm

    Leave a comment:


  • nicosxm
    replied
    Originally posted by comfysofa View Post
    Hi,

    Could anyone develop this indicator for me? : https://www.bigmiketrading.com/downl...load.html?view

    It used to be free and it's the only reason I want to get Ninjatrader to trade :/

    Hoping for a reply soon!
    There you go comfysofa FREE enjoy.......

    nicosxm
    Attached Files

    Leave a comment:


  • Harry
    replied
    Originally posted by comfysofa View Post
    Hi,

    Could anyone develop this indicator for me? : https://www.bigmiketrading.com/downl...load.html?view

    It used to be free and it's the only reason I want to get Ninjatrader to trade :/

    Hoping for a reply soon!

    If you had done a search for Trrader's Dynamic Index, you would have found this post.



    I am the author of the indicator and I do not mind to share it.

    Leave a comment:


  • comfysofa
    replied
    Hi,

    Could anyone develop this indicator for me? : https://www.bigmiketrading.com/downl...load.html?view

    It used to be free and it's the only reason I want to get Ninjatrader to trade :/

    Hoping for a reply soon!

    Leave a comment:


  • neilzep
    replied
    Never mind,thought it was a simple request.

    Leave a comment:


  • neilzep
    replied
    I need a alert for HACOLT strategy below

    #region Using declarations
    using System;
    using System.ComponentModel;
    using System.Diagnostics;
    using System.Drawing;
    using System.Drawing.Drawing2D;
    using System.Xml.Serialization;
    using NinjaTrader.Cbi;
    using NinjaTrader.Data;
    using NinjaTrader.Indicator;
    using NinjaTrader.Gui.Chart;
    using NinjaTrader.Strategy;
    #endregion

    // This namespace holds all strategies and is required. Do not change it.
    namespace NinjaTrader.Strategy
    {
    /// <summary>
    /// Stocks and Commodities - July 2012
    /// </summary>
    [Description("Stocks and Commodities - Long-Term Trading Using Exchange Traded Funds - July 2012")]
    public class HACOLTATS : Strategy
    {
    #region Variables
    private int avg = 55; // Default setting for Avg
    private int ltAverage = 60; // Default setting for LTAverage
    private double candleSize = 1.1;// Default setting for candleSize
    #endregion

    /// <summary>
    /// This method is used to configure the strategy and is called once before any strategy method is called.
    /// </summary>
    protected override void Initialize()
    {
    CalculateOnBarClose = true;
    Add(HACOLT(Avg, CandleSize, LTAverage));
    }

    /// <summary>
    /// Called on each bar update event (incoming tick)
    /// </summary>
    protected override void OnBarUpdate()
    {
    if (HACOLT(Avg, CandleSize, LTAverage)[0] == 100 && Position.MarketPosition == MarketPosition.Flat)
    EnterLong();

    if (HACOLT(Avg, CandleSize, LTAverage)[0] == 0 ||
    HACOLT(Avg, CandleSize, LTAverage)[0] == 50)
    ExitLong();

    if (HACOLT(Avg, CandleSize, LTAverage)[0] == 0 && Position.MarketPosition == MarketPosition.Flat)
    EnterShort();

    if (HACOLT(Avg, CandleSize, LTAverage)[0] == 100)
    ExitShort();
    }

    #region Properties
    [Description("TEMA average")]
    [Category("Parameters")]
    public int Avg
    {
    get { return avg; }
    set { avg = Math.Max(1, value); }
    }

    [Description("Candle Size Factor")]
    [Category("Parameters")]
    public double CandleSize
    {
    get { return candleSize; }
    set { candleSize = Math.Min(Math.Max(0.01, value), 5); }
    }

    [Description("Long Term Average")]
    [Category("Parameters")]
    public int LTAverage
    {
    get { return ltAverage; }
    set { ltAverage = Math.Max(1, value); }
    }
    #endregion



    Simple alert for entries and exits and stops. Voice alert...BUY for entry,SELL for exit
    and vice versa for short entry. Also when stop is hit

    thxs

    Leave a comment:


  • FxInception
    replied
    Proper Fractal Indicator NT7

    Hello there,


    Could someone convert BwFractals as it is to the 7th version?

    There is a fractal indicator for this version, but it shows prices instead of arrows...


    Much appreciate,
    Arthur
    Attached Files

    Leave a comment:


  • dukeoferl
    replied
    ThankYou so much, I really appreciate it!

    Leave a comment:


  • NinjaTrader_Matthew
    replied
    That's great to hear, I have attached an indicator that has been designed to be used for these purposes.
    Attached Files

    Leave a comment:


  • dukeoferl
    replied
    I'm using CQG , they provide the ADV and DECL data.
    Thanks

    Leave a comment:


  • NinjaTrader_Matthew
    replied
    Originally posted by dukeoferl View Post
    Hi,
    I'm looking for an indicator or script that will chart the difference in the Ad-Decl. In TOS it's $ADD. All I can do now is plot both in the same chart.
    Thanks
    In order to use any indicator to accomplish this, you will need a market data provider who offers index data for the Add and Dec. Can you please clarify who you are currently using for data in NinjaTrader?

    Leave a comment:


  • dukeoferl
    replied
    ^ADV-^DECL to ADD

    Hi,
    I'm looking for an indicator or script that will chart the difference in the Ad-Decl. In TOS it's $ADD. All I can do now is plot both in the same chart.
    Thanks
    Attached Files

    Leave a comment:


  • nicosxm
    replied
    Converting MT4 Indicator to Ninja Trader 7

    Good Day everyone,

    I would really appreciate if a skilled person could help with this task.
    I would like to be able to apply the Murrey Math Line X Indicators from MT4 to my Ninja Trader platform.
    I am at this time using on NT the MurreyMathV701 Indicator for NT but as you will see on the screen-shot below I would like to be able to adjust the parameters for Intraday on a 5mn chart.
    Please see below all attach files with the code source from MT4 the MurreyMathV701.zip Indicator for NT and both screen-shot from MT4 and NT.
    Any help would be greatly appreciate.
    I can be reached at : [email protected]

    nicosxm
    Attached Files

    Leave a comment:


  • ivan2007007
    replied
    Guys help rewrite this indicator for ninyatrader. Thanks in advance!
    Attached Files

    Leave a comment:

Latest Posts

Collapse

Topics Statistics Last Post
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
0 responses
636 views
0 likes
Last Post Geovanny Suaza  
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
0 responses
366 views
1 like
Last Post Geovanny Suaza  
Started by Mindset, 02-09-2026, 11:44 AM
0 responses
107 views
0 likes
Last Post Mindset
by Mindset
 
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
0 responses
569 views
1 like
Last Post Geovanny Suaza  
Started by RFrosty, 01-28-2026, 06:49 PM
0 responses
571 views
1 like
Last Post RFrosty
by RFrosty
 
Working...
X