NexusFi: Find Your Edge


Home Menu

 



Categories Help    






NinjaTrader 7 Indicators
Indicators in this section are compatible with NinjaTrader 7


Sort by
Filter

Show full/short entries Entries
BarChartDotComVolumes 5 *
This indicator displays the contract with the highest EndOFDay or IntraDay volume for a list of unlimited number of instruments. The volume data is fetched form BarChart.com.

I use it to identify when to switch contracts around contract Rollover time since I want to trade the contract with the highest volume. The conventional way traders generally do this is to load the current and next futures contracts in NT Market Analyzer, and watch all the volume there. This forces you to update the contracts list every month, and also takes up NT resources to continually process volume data for multiple contracts.

This indicator uses no NT resources, and you never have to update any contract lists with future contracts. You get the volume information on demand, for an unlimited number of specified contracts.

- Use the 'Symbols' parameter to specify which contracts you want to see.
- Press the 'Vol+' chart button to toggle the display of the text On/Off on the chart

Note: The coding may need to change in the future if/when Barchart.com makes changes to the format of the associated web page the data is fetched from.
 
Suggest other entries I might like
Details: BarChartDotComVolumes


December 16th, 2012
Size: 3.79 KB
Downloaded: 549 times

Keywords: barchart barchart.com contract highest monpere rollover volume
Larry Williams Accumulation Distribution with SMA 5 *
A user requested I provide an original version of the Larry Williams Accumulation Distribution without a volume component using an SMA.
 
Suggest other entries I might like
Details: Larry Williams Accumulation Distribution with SMA


December 15th, 2012
Size: 3.96 KB
Downloaded: 774 times
AdaptiveSuperTrend 2 *
 
Suggest other entries I might like
Details: AdaptiveSuperTrend


December 10th, 2012
Size: 6.49 KB
Downloaded: 694 times
nfsCandles 5 *
This is a very simple/simplistic indicator that adjusts the outline, wick and bar body color all to the same color and it works with normal candles or HeikenAshi (HA) Candles.
 
Suggest other entries I might like
Details: nfsCandles


December 2nd, 2012
Size: 5.06 KB
Downloaded: 379 times

Keywords: candle outline
UniRenko Projected Bar Closes 5 *
Indicator marks where current UniRenko bar will close in both directions.
 
Suggest other entries I might like
Details: UniRenko Projected Bar Closes


November 29th, 2012
Size: 2.13 KB
Downloaded: 3129 times

Keywords: bar close monpere predict predictor projected renko unirenko universal
CSK_ChartScale 5 *
NinjaTrader Ver 7.0.1000.8

Same purpose as ChartScale indicator but much superior and requires just one TickRange parameter. It will work perfect in history while you scrolling back.
 
Suggest other entries I might like
Details: CSK_ChartScale


November 24th, 2012
Size: 1.85 KB
Downloaded: 715 times
TD- series indicators 4 *
The following 3 indicators are posted here after receiving a request.

They are similar to (if not duplicates of) other indicators in the downloads section and just tweaks to stock NT indicators to color the underlying indicator based on its slope, simply to make it easier to judge slope.

Notes:

1. The TDMACD indicator is slightly different than conventional MACD in that the histogram is MACD itself rather than the difference between MACD and its average, and an envelope has been added to the histogram to smooth its edges.

2. For newbies--install the package using the NT import utility ("File > Utilities > Import Ninjascript...") unless you know what you're doing (in other words e.g. do not unZIP the package and try to install by any other means)

3. If you import the ZIP file note that @MAX.cs, @MIN.cs, @EMA.cs and @SMA.cs are along for the ride and can be excluded.
 
Suggest other entries I might like
Details: TD- series indicators


November 23rd, 2012
Size: 14.78 KB
Downloaded: 677 times

Keywords: tdmacd tdsma tdstochastics
OIF CLose Position With Button 5 *
FOR CHART TRADERS: This indicator is a sample of how to automate the exit of a position with a chart indicator


Version 1.1
Exported with NT 7.0.1000.11
(1.0 did not connect the Parm to the Button correctly)
(1.0 did not have MA plots
(1.1 now detects the account with the position, SIM and REPLAY overridden by live account)
(1.1 does not toggle exit button when position is closed, 1.0 did)


The method of closing the position is through an OIF file written into the "My Documents\NinjaTrader 7\Incoming" folder.

In this exmaple, when the Exit button is White
a long position is exited on a CrossUnder EMA13 x SMA20
a short position is exited on a CrossOver EMA13 x SMA20

NOTE: Change the variable OIF_Folder to point to your My Documents folder.
THE ATI INTERFACE OPTION MUST BE SELECTED ON CONTROL CENTER / FILE

This indicator creates a Exit button on the toolbar
When the Exit is enabled, the button is White
When the Exit is disabled, the button is Gray
 
Suggest other entries I might like
Details: OIF CLose Position With Button


October 29th, 2012
Size: 6.69 KB
Downloaded: 310 times
Spread between bid and ask 5 *
This simple indicator shows, on the top right hand corner of any chart that you load it on, the spread between the bid and ask prices. I find it very helpful to use if you have a strat running on a chart (versus trading manually off the chart using the ChartTrader button).  
Suggest other entries I might like
Details: Spread between bid and ask


October 27th, 2012
Size: 1.96 KB
Downloaded: 485 times
ADX BollingerBandwidth CCI indicator 5 *
This is a variation of the CCI indicator that also takes inputs from ADX and Bollingerbandwidth. You can change any of the parameters for the inputs. The indicator looks a lot like the CCI indicator except on big moves and trending moves, where the ADX and bollingerbandwidth give extra weight to the indicators movement.


Update:

here's the code snippet for entry signals for a strat based on this indicator crossing above and under the zero line (with adxperiod, bbwidthperiod and cci period all set at 20 and stdev set at 2. You can screw around with the setting):

For long entries:

if (Adxbbwidthcci(20, 20, 20, 2).ADXBBCCILINE[0] > 0 && Adxbbwidthcci(20, 20, 20, 2).ADXBBCCILINE[1] < 0)

For short entries:

if (Adxbbwidthcci(20, 20, 20, 2).ADXBBCCILINE[0] < 0 && Adxbbwidthcci(20, 20, 20, 2).ADXBBCCILINE[1] > 0)


Additionally, I found the following filter works well with the strat based on this indicator:

// no zero line cross above in last 10 bars for adxbbwcci (you can of course tweak so no zero line cross for at least X bars):

if (CountIf(delegate { return (Adxbbwidthcci(10, 10, 10, 2).ADXBBCCILINE[1] * 1000) > 0;}, 10) >= 10)

Good luck.
 
Suggest other entries I might like
Details: ADX BollingerBandwidth CCI indicator


October 27th, 2012
Size: 9.10 KB
Downloaded: 932 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