This is the mahHeikenAshiDelta indicator that I have posted in another thread last year.
The difference it has been modified.
I have just read Dan Valcu's new book and found on page 55, the HA Delta Plus indicator. So I coded the modifications with help from another helpful person on this forum.
Attached are HeikenAshiDeltaPlus1, & 2.
1 is single and double smoothed.
2 is double and triple smoothed.
The original in comparison is not smoothed and single smoothed.
Would be good if someone could make 1 indicator out of the 3 that has user parameters for entering the amount of smoothing for both plots, and even the type of smoothing ie. SMA, EMA, or others.
Then post it here for all to enjoy.
These were exported from NT8 Ver 8.0.2.0
I could only load one indicator in this post, so this is #1.
#2 is in a separate post.
Uploaded 20/3/17 from NT8 V 8.0.5.0 Hopefully this time open source.
Use this in Strategy Analyzer like any other Ninja Trader 8 strategy.
// NOTE: Make sure that historical data exists first. To do so, connect to your Data Source and then
// Go to Tools -> Historical Data,
// then click Load tab,
// then under Download section, select Instrument(s), Intervals, Start/End Dates, Data Type,
// then click Download
--------------------------------------------------------------------------------------------------------------------
CHANGE LOG:
version 4.3
// 23 February 2017 ver 4.3 MURTY ROMPALLI: Fixed non-working default properties, Added NOSEC formats (NOSEC stands for NO SECONDS in time field. If exporting 1-minute bars, skipping :00 seconds saves disk space)
version 4.2
// 25 October 2016 ver 4.0 NT 8 version released by MURTY ROMPALLI; Will not work with older versions
// 26 October 2016 ver 4.1 MURTY ROMPALLI: Code cleanup and simplification
// 28 October 2016 ver 4.2 MURTY ROMPALLI: Support for Stocks, Code improvement
// KNOWN PROBLEMS:
// Throws errors: "Error on calling OnStateChange method: Object reference not set to an instance of an object
version 4.0
25 October 2016: ver 4.0 NT 8 version released by MURTY ROMPALLI; Will not work with older versions of Ninja Trader
Printing to the log is good for debugging, but sometimes I end up with loads of entries in the output window, and I have no idea which indicator on which chart triggered the printout. I have therefore written a global method, which can be used for printing to the Output window for debugging purposes.
level: log level 1-5. A corresponding number of "*" are prefixed to the text.
In addition the following information is printed by default:
* Instrument.MasterInstrument.Name
* BarsPeriod.BasePeriodValue.ToString()
* BarsPeriod.BasePeriodType.ToString()
* Time[0].ToString()
and finally the text passed to the method is added to this string.
This global method obviously cannot be run as a standalone indicator, but can be used in your own indicators to print to the Output window.
This indicator shows the economic news for the day on your chart in Ninjatrader 8. It is fully configurable for the type of news items you would like to see, the colors of different impact news items, the fonts you want to use and which countries you would like to see news items for.
Version 1.0.2:
- Not displaying date as the news is for the current day only. Will refresh automatically for the next day
- Showing the time of the news item in its raw format as it comes from the source
Version 1.0.3:
- Fixed layout bug when no news items are returned
Version 1.0.4:
- Indicator now allows time offset to be configured to show news announcement time in your time zone, thanks to @sagor
Version 1.0.5:
- Fixed a bug where the event time was not assigned to the new time with the applied times zone. Times will now display correctly in your chosen time offset.
Version 1.0.6:
-Parsing the source date with US date format. Indicator will now work for users that have a non standard date format. Thanks @Aregon for helping out with the debugging
-Can now specify a right hand margin to offset the indicator if necessary
Version 1.0.7:
-Renamed Right Hand Margin parameter to Left Hand Margin, which it actually is
Version 1.0.8:
-Removed code that overrides grid line settings on a chart. Indicator will now leave grid lines as per chart template.