Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
I will Develop your Indicator or Strategy for FREE
Collapse
This topic is closed.
X
X
-
I thought Dean Malone was the author of this Indicator.....Originally posted by Harry View Post
nicosxm
Leave a comment:
-
There you go comfysofa FREE enjoy.......Originally posted by comfysofa View PostHi,
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!
nicosxmAttached Files
Leave a comment:
-
Originally posted by comfysofa View PostHi,
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:
-
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:
-
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:
-
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
Leave a comment:
-
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:
-
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?Originally posted by dukeoferl View PostHi,
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
Leave a comment:
-
-
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
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
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
366 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
107 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
569 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
571 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Leave a comment: