NexusFi: Find Your Edge


Home Menu

 



Categories Help    






NinjaTrader 8 Indicators and More
Indicators and Files in this section are compatible with NinjaTrader 8


Sort by
Filter

Show full/short entries Entries
Reverse Engineered RSI NT8b9 5 *

Reverse Engineered RSI NT8b9

Port of 'Reverse Engineering RSI' by Giorgos Siligardos TASC June 2003.

Attempts to plot at what price will an RSI value of 'n' be reached. Most accurate within the current bar.

 
Suggest other entries I might like
Details: Reverse Engineered RSI NT8b9


February 20th, 2016
Size: 3.53 KB
Downloaded: 1162 times
Quarterly Bars Type NT8b9 5 *
Quarterly Bars Type NT8b9

Each bar contains data within a US quarter. Jan-Mar, Apr-Jun, Jul-Sep, Oct-Dec.

This differs from using 3 * Monthly bars.

I have tested the values quite thoroughly so it should be accurate. Let me know otherwise.

You can add this bars type to the menu by clicking Configure.

 
Suggest other entries I might like
Details: Quarterly Bars Type NT8b9


February 18th, 2016
Size: 1.86 KB
Downloaded: 485 times
CongestionBox4RangeNT8 5 *
Updated: 9/10/2016
Fixed problem with dataseries which prevented the indicator from being saved with the workspace.

Converted from the NT7 version. Originally design for range bars to box in those congestion areas produced by up and down bars that resulted from the market not going anywhere (it's not perfect).
But some folks had success using the indicator on minute charts.
The box is delayed and the red and green colors are even more delay but this was not meant to be a real time indicator.
Added public series to hold values for upper levels, lower levels, and bar numbers, to be accessed from
strategies.
Note: Right now the indicator do not show draw objects when added to a strategy using AddChartIndicator therefore ist's not going to draw rectangles on charts. Ninjatrader trader is aware of the bug and said it is already fixed and we will see it in the next release. Using Beta Version 8.0.0.8 (Multi-Broker).

Special thanks to Sirkin01 and philm for their ideas to help improve the indicator.
 
Suggest other entries I might like
Details: CongestionBox4RangeNT8


February 15th, 2016
Size: 6.31 KB
Downloaded: 632 times
'Gapless' Collection V2.2 5 *
'Gapless' Collection V2.2

Updated for beta 11.

A collection of simple 'gapless' indicators to get you started with your own versions.

'Gapless' is simply this: it ignores the intra-day session gap. Why do this? Ever tried trend trading at the session open but having to wait for your EMA or RSI to catch up? As far as I'm concerned if I am not making money from the gap itself ie. holding a position overnight, then I want an indicator that will show me 'relative' direction from the opening bar.

* Useful for stocks, DAX, grains and those trading the RTH sessions. You could plot a ETH chart with a regular indicator next to a RTH chart with the gapless indicator for confirmation.

* The indicators have the 'option' to use the gapless concept, else they plot as usual.

* EOD type charts will plot as normal, it will automatically use the standard code.

Includes:

* Gapless EMA (Thanks to FatTails for this original NT7 code).
* Gapless SMA
* Gapless TEMA
* Gapless RSI
* Gapless CCI
* Gapless Macd

V2 Added:

* ADX
* Stochastics
* Double stochastics
* Natural Moving Average x 2

V2.2:

*Checked for NT8b9. Cleaned naming.


and also includes a 'gapless price proxy'. Use this as a replacement 'Input' for your panel indicators. It works for some but not for others, so there are limitations. Try on a regular Macd. Simply add the regular Macd indicator and select 'Input Series'> Indicators>Sim22_GaplessInputProxy. It will now ignore the gaps.
 
Suggest other entries I might like
Details: 'Gapless' Collection V2.2


December 16th, 2015
Size: 32.81 KB
Downloaded: 925 times
MacdBB + gradient + gapless + audio V1 5 *
MacdBB + gradient + gapless + audio V1

Updated for NT8 beta 11

Includes:

* Paint bars
* Candle outlines
* Paint background of panel and chart
* Conservative mode
* Gradient option, including 2 gradient add-on functions for your other indicators
* Custom audio alert
* Gapless option. Use intraday to ignore the opening gap. Useful for determining the opening trend.

Make sure you extract the .zip file first to show the files. Inside you will find the .zip to import!

Make sure you insert the audio files here: C:\Program Files (x86)\NinjaTrader 8\sounds
 
Suggest other entries I might like
Details: MacdBB + gradient + gapless + audio V1


December 13th, 2015
Size: 110.47 KB
Downloaded: 1803 times
You can have Doji with your unoutlined NT 8 candles
Name: DrawCandleClose Version 1

This indicator was created to show the Closing price when the CandleStick Opening and Closing price were the same and a Transparent Body Outline color was specified. Standard NT 8 CandleStick Closing price is drawn with the Outline color and is Transparent when that color is Transparent.

Note that NT7 had logic to draw a Black Close line, if the Outline color was Transparent and the Background color was White. This logic has been removed in NT8, so the problem appears in NT8 regardless of Background color.

NT8 DrawCandleClose Indicator is obsolete. Use fix described below. Attached file is a dummy file to meet posting requirements. Please download the file to log your interest in this fix, but do not install downloaded file. Instead, apply the fix manually. Never blindly replace standard files because of the risk of back leveling.

If you would like to have this fix standard NT8 CandleStick behavior, then post your vote for Tracking ID # SFT-818 to thread
https://forum.ninjatrader.com/showthread.php?t=79416


NT 7 Version fix available at https://nexusfi.com/local_links.php?catid=27&linkid=1667

Examples
Top CandleStick:Chart Style = Candlestick with Black outline.

Middle CandleStick:Chart Style = CandleStick Transparent Outline After Fix

Bottom CandleStick on Black Background After Fix:Chart Style = CandleStick After Fix

NT8 Fix for Tracking ID # SFT-818 , Missing Doji when CandleStick Outline Transparent:
Description: Always draw the Doji Close line with the Wick Color instead of the Outline Color. This eliminates the inefficiency of having an Indicator check every CandleStick bar close for Open==Close and overwrite the already drawn Transparent Close line.

Applying this fix in no way changes the appearance of CandleSticks that have bodies. This can be verified with the examples provided.


NT8: Lines 63-64 \Documents\NinjaTrader 8\bin\Custom\ChartStyles\@CandleStyle.cs
Replace:

 
Code
TransformBrush(overriddenOutlineBrush ?? Stroke.BrushDX, new RectangleF(point0.X, point0.Y - Stroke.Width, barWidth, Stroke.Width));
RenderTarget.DrawLine(point0, point1, overriddenOutlineBrush ?? Stroke.BrushDX, Stroke.Width, Stroke.StrokeStyle);
With:
 
Code
TransformBrush(overriddenBarBrush ?? Stroke2.BrushDX, new RectangleF(point0.X, point0.Y - Stroke2.Width, barWidth, Stroke2.Width));
RenderTarget.DrawLine(point0, point1, overriddenBarBrush] ?? Stroke2.BrushDX, Stroke2.Width, Stroke2.StrokeStyle);
I recommend the following to apply the fix. It may seem complicated but will save you time in the long run. Note that it is undocumented but NT Backup never includes files that begin with the character "@".

1) Copy \Documents\NinjaTrader 8\bin\Custom\ChartStyles\@CandleStyle.cs
2) Paste the file and rename it @CandleStyle.cs Before SFT-818
3) Edit @CandleStyle.cs with Notepad
4) Make changes to lines 63 & 64 with Notepad and save changes
5) Compile any file with NT Editor and Exit NT Editor. New @CandleStyle.cs will be used in the compile.
6) From next start of NinjaTrader, CandleSticks will use Wick Color for Doji Close line.
7) Copy \Documents\NinjaTrader 8\bin\Custom\ChartStyles\@CandleStyle.cs
8) Paste the file and rename it @CandleStyle.cs After SFT-818

Any NT updates will replace @CandleStyle.cs so you will have to make the changes again. Create Before and After copies of the update, as you did above, adding the update number after 818. Never blindly replace standard files because of the risk of back leveling. You can use Winmerge to compare updated @CandleStyle.cs and @CandleStyle.cs After SFT-818 and reapply fix to updated.

Cleanup:
1) Delete Indicator DrawCandleClose.cs, if it exists, from \Documents\NinjaTrader 8\bin\Custom\Indicators.
2) Start NT Editor > Right click on blank form and select Compile to remove DrawCandleClose Indicator.
NT will automatically remove the Indicator from any Charts that use it.

Test:
Create a CandleStick chart with Transparent outline. Verify that you see Doji.

If you installed Chart Style Doji then:
1) Change Charts that use it to use CandleStick instead.
2) Delete ChartStyleDoji, if it exists, from \Documents\NinjaTrader 8\bin\Custom\ChartStyles.
3) Start NT Editor > right click on blank form and select Compile.
 
Suggest other entries I might like
Details: You can have Doji with your unoutlined NT 8 candles


December 9th, 2015
Size: 208 bytes
Downloaded: 222 times
Linear Gradient MultiOscillator with bar, outline and bg colors (V1.2) 5 *
New V1.2 VERY IMPORTANT FIX

Includes:

* 6 levels of gradient stops, so you can set your gradient coloring to anything you want.

* 2 new functions in the 'Addons' folder that you can use in your own indicators to help make linear gradients easy.

* Simple toggle to reverse coloring without having to enter all new brushes again.

* RSI, CCI, Stochastics and Double Stochastics.


Update: Dec 2015

* Added ability to not plot the indicator in the lower panel, just paintbars or background. Make sure you place the indicator in the 1st panel. The plots/price marker should automatically become transparent.

Update: Jan 2016

* VERY IMPORTANT FIX. Made gradient "Get Color" more efficient. Was making new LG every bar. Now it instantiates once.
* Added Stochastics and Double Stochastics.
* Added an average line if required.
 
Suggest other entries I might like
Details: Linear Gradient MultiOscillator with bar, outline and bg colors (V1.2)


December 1st, 2015
Size: 23.54 KB
Downloaded: 641 times
RSqueeze for NT8 5 *
The 'infamous' RSqueeze indicator ported to NT 8.

Includes a re-written RGaussianFilter indicator.

The code has been optimized for efficiency.

Generated using NinjaTrader Version 8.0.0.6 - BETA

12-10-2015 Update: Standardize naming and Sound Alert file path name.
 
Suggest other entries I might like
Details: RSqueeze for NT8


November 27th, 2015
Size: 19.60 KB
Downloaded: 1731 times
TTMS for NT8 5 *
TTMS and TTM "Wave C" for NT8.

Note: Wave C is a rough visual approximation of the actual TTM_Wave.

Exported using Version 8.0.0.6 - BETA

12-10-2015 Update: Standardize naming and Sound Alert file path.
 
Suggest other entries I might like
Details: TTMS for NT8


November 25th, 2015
Size: 20.71 KB
Downloaded: 1195 times
Histogram Collection for NT8 5 *
A collection of configurable Histogram Types for NT8 including the following:

MACD,
TSI (.aka. Erogodic),
SMA (.aka. AwesomeOscillator, LBR 3-10),
CCI,
Fisher,
ADX

Exported using NT 8.0.0.6 - BETA

This indicator collection will import into it's own folder named: "Histograms"

12-10-2015 Update: Standardize naming and Sound Alert file path.
05-04-2016 Update: Fix parameter serialization issue.
 
Suggest other entries I might like
Details: Histogram Collection for NT8


November 25th, 2015
Size: 39.35 KB
Downloaded: 919 times
 



 
Category
 




© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top