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
CamarillaPivots 4 *
A description of pivots based on the Camarilla equation can be obtained by searching via google or your favorite search engine so I won't provide that here.

This indicator displays the pivots based on a calculation of the yesterday's High, Low, and Close. However, this seems to me to be ok for Tuesday through Friday but when Monday's pivots are based on Sunday's data then I think you should change the DailyHiLo parameter to false and enter Friday's High, Low, and Close. You can also set the DailyHiLo parameter to false as well if you want to base today's pivots on the market hours of the instrument you are trading.

There are labels on the right side for each level. Suggest you set your right margin to at least 40 in order to see the labels.

I have no idea if these pivots are significant or not. I saw a post from a new member of this forum who said they make money using them which motivated me to find out what they are. This indicator is a result of the research I've done trying to find out what Camarilla pivots are. Use them in good health.

Mike Winfrey
 
Suggest other entries I might like
Details: CamarillaPivots


July 5th, 2010
Size: 2.44 KB
Downloaded: 802 times

Keywords: camarilla joeblow
jhlStdDev
Standard Deviation. Returns the same values as the standard supplied StdDev. However, the supplied StdDev iterates, this does not. Version 1.0.
 
Suggest other entries I might like
Details: jhlStdDev


July 5th, 2010
Size: 2.28 KB
Downloaded: 211 times

Keywords: fluxsmith stddev
jhlEfficiency
A signal to noise ratio. Returns the total delta for the period divided by the sum of each individual period's delta. Does not iterate, so can reasonably be used with CalculateOnBarClose == false. Might be known by other names, documented as 'Efficiency' in 'Smarter Trading' by Perry J. Kaufman. Version 1.0.
 
Suggest other entries I might like
Details: jhlEfficiency


July 5th, 2010
Size: 2.58 KB
Downloaded: 207 times

Keywords: fluxsmith efficiency signal noise
jhlPearsonCorr
Returns the Pearson product-moment correlation coefficient of the input series. This requires iteration, so should probably be used with CalculateOnBarClose == true.

Version 2 - Solves a /0 error, returns 0 if price is unchanged for all of the bars in the calculation.
 
Suggest other entries I might like
Details: jhlPearsonCorr


July 4th, 2010
Size: 2.52 KB
Downloaded: 211 times
jhlMAX 5 *
Maximum value seen in period. Should return the same values as the standard MAX, which as of b18 has been fixed to reduce iteration. With that fixed the only advantage this has over the standard is memory reduction when used as a component and not displayed. (Both versions are now efficient with CalculateOnBarClose == false.)

Version 2 - Corrected calculation errors when COBC == false && Input != High
 
Suggest other entries I might like
Details: jhlMAX


July 4th, 2010
Size: 2.31 KB
Downloaded: 278 times
jhlMIN 5 *
Minimum value seen in period. Should return the same values as the standard MIN, which as of b18 has been fixed to reduce iteration. With that fixed the only advantage this has over the standard is memory reduction when used as a component and not displayed. (Both versions are now efficient with CalculateOnBarClose == false.)

Version 2 - Corrected calculation errors when COBC == false && Input != Low
 
Suggest other entries I might like
Details: jhlMIN


July 4th, 2010
Size: 2.32 KB
Downloaded: 260 times
jhlLinRegR2
R-Squared, Coefficient of Determination, the square of the Correlation Coefficient. This should return the same values as the standard supplied RSquared. Unfortunately both versions always iterate, so should probably be used with CalculateOnBarClose == true.
I believe my version to be slightly more CPU efficient, as it does not require a square root calculation used in the distribution version.
Version 1.0.
 
Suggest other entries I might like
Details: jhlLinRegR2


July 3rd, 2010
Size: 6.78 KB
Downloaded: 164 times
jhlWMA
Weighted Moving Average. Weighting is linear from 1 .. n. Should return the same values as the standard supplied WMA, but intended to be a reusable component. Additionally, the standard WMA always iterates, this does not iterate on intrabar data, making it more efficient with CalculateOnBarClose == false.

Version 2:
Defaults to CalculateOnBarClose = false
Updated with new JHL.Utility.MA
Faster calculation

Version 3:
Even faster calculation
 
Suggest other entries I might like
Details: jhlWMA


July 3rd, 2010
Size: 4.82 KB
Downloaded: 300 times
jhlATR
Average True Range. Should return the same values as the standard supplied ATR, but designed to be a space efficient reusable component. Version 1.0.
 
Suggest other entries I might like
Details: jhlATR


July 3rd, 2010
Size: 6.25 KB
Downloaded: 260 times

Keywords: atr average fluxsmith range true
jhlMMA
Wikipedia calls this a 'Modified Moving Average'. Traders may know it as Welles Wilder's Moving Average, as it is the averaging method used in many of his indicators.

It's conceptually simpler than an EMA, the basic formula being:
average = (newValue + priorAverage * (n - 1)) / n

However, for any number of periods 'n', the outcome is identical to EMA(2 * n - 1). Since my basic indicators are all about efficient code reuse that is the implementation used here. Using the EMA formula is also slightly more CPU efficient than the formula above.

Version 1.0.
 
Suggest other entries I might like
Details: jhlMMA


July 3rd, 2010
Size: 4.23 KB
Downloaded: 189 times

Keywords: average fluxsmith moving modified
jhlLinReg
Should return the same values as the standard provided LinReg. Unlike the standard LinReg this does not iterate for intrabar updates. Version 1.0.
 
Suggest other entries I might like
Details: jhlLinReg


July 3rd, 2010
Size: 6.55 KB
Downloaded: 174 times
jhlLinRegIntercept
Linear Regression Intercept. Returns slightly different values than the standard LinRegIntercept provided, which I believe to be incorrect (at least through NT7 Beta 18). Also unlike the provided version does not require iteration on intrabar updates. Version 1.0.
 
Suggest other entries I might like
Details: jhlLinRegIntercept


July 3rd, 2010
Size: 4.59 KB
Downloaded: 162 times
jhlLinRegSlope
Linear Regression Slope. Should return the same values as the standard LinRegSlope. However, the standard version iterates on every update, making it especially inefficient for intrabar (tick) data. This version does not iterate on intrabar updates. Version 1.0.
 
Suggest other entries I might like
Details: jhlLinRegSlope


July 3rd, 2010
Size: 2.61 KB
Downloaded: 203 times

Keywords: fluxsmith linear regression slope
jhlEMA
Should return the same values as the standard EMA. Designed to be a reusable component with low memory overhead.

Version 2:
Further reduced memory footprint
Defaults to CalculateOnBarClose = false
Updated with new JHL.Utility.MA
 
Suggest other entries I might like
Details: jhlEMA


July 3rd, 2010
Size: 4.51 KB
Downloaded: 314 times
jhlSMA
Should return the same values as the standard SMA. Illustrates compositing by building from jhlSum. Version 1.0.
 
Suggest other entries I might like
Details: jhlSMA


July 3rd, 2010
Size: 4.00 KB
Downloaded: 176 times

Keywords: fluxsmith sma
jhlSum
Should return the same values as the standard 'SUM', hopefully with less memory overhead. Intended to be used as a component in more complex indicators. Version 1.0.
 
Suggest other entries I might like
Details: jhlSum


July 3rd, 2010
Size: 2.14 KB
Downloaded: 150 times

Keywords: fluxsmith sum
ZigZagUTC_TL_Barcount_Fibs ver 5.1 5 *
This is NT 7 b17 compatible version of this nice indicator that you can find here: ZigZagUTC_TL_Barcount_Fibs ver 5

It's backward compatible with NT 6.5
 
Suggest other entries I might like
Details: ZigZagUTC_TL_Barcount_Fibs ver 5.1


June 25th, 2010
Size: 8.84 KB
Downloaded: 1535 times

Keywords: fibonacci ivanjocic ninjatrader utc zigzag barcount
Time lines NT V7 5 *
This was given to me, It draws vertical lines at specified intervals of time.
 
Suggest other entries I might like
Details: Time lines NT V7


June 24th, 2010
Size: 2.39 KB
Downloaded: 1177 times

Keywords: lines time meyer99
Murrey Math Lines v1.5.1 5 *
Please check this thread Murrey Math Lines for detailed description.

This version adds support for NT 7 b17
 
Suggest other entries I might like
Details: Murrey Math Lines v1.5.1


June 24th, 2010
Size: 9.12 KB
Downloaded: 2434 times

Keywords: ivanjocic math mml murrey ninjatrader
PKpricealert2_nt7 4 *
This indicator allows a user to draw a horizontal line on the chart and have an audio alert wav file sound when the line is pierced (either from above or below).

I did not originate this indicator. It is a modification of NT's native price alert indicator. NT's original indicator (available in your preloaded indicator set) only gives you an alert in their alert window which I didn't find particularly helpful. Roonius made this NT7 version possible. The NT6.5 version does not work in NT7 because NT7 does not use the "drawobject" command.

How to make this indicator work for you:
Insert this indicator twice into your chart indicator set.
Add audio file names to each. I use the same audio file for both boxes in each indicator.

In one indicator, choose uptrend = "true"
In the 2nd indicator, chose uptrend "false"

You will want to choose "false" for Calc on Bar close for both indicators.

For audio files, type in the name of an audio file that you know exists in your program files/ninjatrader 7/ sounds folder.

You can make custom audio files for free at:
https://www2.research.att.com/~ttsweb/tts/demo.php

This indicator only works in NT7. There is a separate NT6.5 indicator version in the NT 6.5 download section.
 
Suggest other entries I might like
Details: PKpricealert2_nt7


May 26th, 2010
Size: 2.59 KB
Downloaded: 1221 times

Keywords: pkpricealert todd
Auto Trend Line for NT7 5 *
Found on the Ninja Trader Site:

Description
This is an indicator NinjaTrader_Ray published for the September 07 issue of Stocks & Commodities magazine. Converted it to NT7 by fixing the DrawRay code break.

To Import
1. Download the attached file to your desktop
2. From the Control Center window select the menu File > Utilities > Import NinjaScript
3. Select the downloaded file

Automatically draws a line representing the current trend and generates an alert if the trend line is broken. 0 = no signal, 1 = buy signal on down trend break, 2 = sell signal on up trend break

NT7 Only see above link for 6.5
 
Suggest other entries I might like
Details: Auto Trend Line for NT7


May 18th, 2010
Size: 6.25 KB
Downloaded: 2983 times

Keywords: alert auto line trend ztr
Ratio2Instrument
This indicator plots the ratio between two instruments. The default quantity is 1 (1*x/1*y, for example), though that can be changed in the dialog.

Attached is a monthly chart of the Gold/Oil ratio as an example.

Version 3.12 posted 16 May 2010 by MXASJ.
 
Suggest other entries I might like
Details: Ratio2Instrument


May 16th, 2010
Size: 2.70 KB
Downloaded: 407 times

Keywords: mxasj ratio
RMI - Indikator 5 *
Description:
This Indikator is a little improvment, based on the well known RSI. Surprisingly it is not part of NT. The Idea is, to compare Momenti instead of Prices over a given Period. The Distance between the two Prices within a Momentum ist specified by the "Shift" Parameter.

How to Use:
Period works like in the RSI. With "Shift = 1" the RMI shows the same behavior like the RSI. While increase the shift, the RMI becomes smoother compared to the RSI.
---> Erich Florik "New Trader Dimensions" suggest Values like 3/8 or 5/13 for very clear and better Trendsignals compared to the RSI

Interpretation:
above the upper Line (70-80) we have an up-Trend, below the lower Line (30-20) we have a down-Trend. But UNLIKE the RSI we have no oversold/overbought Situation in these regions!


To Import
1. Download the attached file to your desktop
2. From the Control Center window select the menu File > Utilities > Import NinjaScript
3. Select the downloaded file

Exported with NT 7.0.0.15

UPDATE 5/20/2010:
Now also should work with NT 6.5
 
Suggest other entries I might like
Details: RMI - Indikator


May 12th, 2010
Size: 2.27 KB
Downloaded: 689 times

Keywords: nt7 nt6.5
All Color Ladder Template
Like to look at the ladder in pure color sometimes no numbers at all.
 
Suggest other entries I might like
Details: All Color Ladder Template


May 11th, 2010
Size: 29.47 KB
Downloaded: 1167 times

Keywords: ztrade101 ladder gompackage
Balance Line NT7
Cory's Balance Line V1, tweaked to work with NT7. Enjoy.  
Suggest other entries I might like
Details: Balance Line NT7


April 29th, 2010
Size: 3.67 KB
Downloaded: 504 times

Keywords: balance cory line nt7
Zero-Lagging Hull Moving Average 3 *
Zero Lagging Hull Moving Average ------ I just modified ZeroLagEMA code

COMPATIBILITY:
NinjaTrader 6.5: YES
NinjaTrader 7.0: YES - ZTrade101


See also NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: Zero-Lagging Hull Moving Average


April 2nd, 2010
Size: 5.14 KB
Downloaded: 1080 times

Keywords: zerolag spikoloco ma hull
Zero-Lagging Weighted Moving Average
Zero Lagging Weighted Moving Average ------ I just modified ZeroLagEMA code.

Looks good on any chart.

COMPATIBILITY:
NinjaTrader 6.5: YES
NinjaTrader 7.0: YES - ZTrade101


See also NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: Zero-Lagging Weighted Moving Average


April 2nd, 2010
Size: 3.45 KB
Downloaded: 766 times

Keywords: weighted zerolag spikoloco ma
XPeriodChannel Indicator for NT 7 5 *
XPeriodChannel - multi-time frame capable indicator to reference a different timeframe to plot channels on your lower timeframe chart.

Credit to Sam Collins who gave me original AmiBroker formula for this indicator which I converted to NinjaTrader.

Edit: Got feedback for hard-coding black as color for text that displays channel prices. Re-coded to refer to color of channel line plots to correct.

Compatibility:
6.5: No
7.0: Yes
 
Suggest other entries I might like
Details: XPeriodChannel Indicator for NT 7


April 1st, 2010
Size: 2.64 KB
Downloaded: 830 times

Keywords: multi-time frame period nt7 idfgan channel xperiodchannel
SMI5 5 *
This is an enhancement of SMI4 (which was an enhancement / combination of the SMI2 and Cory's SMI2) which added a price bar coloring option, a background coloring option, an option to draw a vertical line on the price panel when trend changes and an option to play a sound upon the formation of a new price bar).

Cory contributed code to color the region between +20 / -20 which indicates a possible chop zone.

The background coloring differs from SMI4, which painted the background based on whether the SMIEMA was above or below the zero line.

This version changes the background color when the SMIUP / SMIDOWN dots rise or fall above the SMIEMA line, indicating a possible change in price direction, for potential earlier entry into the move.

Examples of how I use this indicator can be found in the WizardsDen (HolyGrail II) thread.

March 23, 2010: Update

REPAINTING:
Fixed a "repainting" problem that other members discovered. Cleaned up the code. Changed the text that read "very over bought / very over sold" to "chop zone upper" & "chop zone lower". Removed the ChopFilter function, as it added nothing to help in keeping you out of chop.

ADDED TEXT ALERTS:
"POSSIBLE CHOP" when SMI dot enters the +20 / -20 zone
"LONG BREAKOUT" when SMI dot exits above the +20 zone
"SHORT BREAKOUT" when SMI dot exits below the -20 zone

COMPATIBILITY:
NinjaTrader 6.5: YES
NinjaTrader 7.0: YES - ZTrade101

(Re-uploaded March 23, 2010, 7:29 pm CST. Original post did not contain the .zip file, just the .jpg file)

May 17th UPDATE:

This fix addresses several problems that were discovered.

Mindset contributed code to color the bars hollow when price is rising & solid when price is falling
eDanny contributed code to remove errant arrows, vertical lines, text messages and also code to clean up the conditions when the warning sounds play.

The arrow code has been changed to (offset*ticksize) so that when you use it on currencies, you shouldn't have to adjust the OFFSET parameter in order to get the arrows to show. They should show automatically now.

I changed it so that it colors the arrows to whatever color you set in the VERTICAL LINE UP/DOWN option. That way, you can have Red/Blue price bars & Magenta / Lime arrows (they are a little easier to spot, I think, when they're not the same color as the price bars).


See also NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: SMI5


March 23rd, 2010
Size: 11.30 KB
Downloaded: 4707 times
SMI4 5 *
I enhanced Cory's SMI2 and added a price bar coloring option, as well as background coloring option and the option to draw a vertical line on the price panel when trend changes. You can also put this indicator in panel 1 and turn off all the plots (Set all plots & alert line to TRANSPARENT) and just using the background colors to color the background of the price panel, if you desire. I altered the default settings and some of the plots so that it now looks more like the Eco2 (Ergodic) indicator, and is (I think) a little easier to read than Eco2.

March 23, 2010: Update

REPAINTING:
Fixed a "repainting" problem that other members discovered. Cleaned up the code. Changed the text that read "very over bought / very over sold" to "chop zone upper" & "chop zone lower". Removed the ChopFilter function, as it added nothing to help in keeping you out of chop.

ADDED TEXT ALERTS:
"POSSIBLE CHOP" when SMI dot enters the +20 / -20 zone
"LONG BREAKOUT" when SMI dot exits above the +20 zone
"SHORT BREAKOUT" when SMI dot exits below the -20 zone

COMPATIBILITY:
NinjaTrader 6.5: YES
NinjaTrader 7.0: YES - ZTrade101


See also NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: SMI4


March 23rd, 2010
Size: 10.70 KB
Downloaded: 2181 times

Keywords: stochastic wizard momentum smi smi4
Fibonacci Cluster V14 5 *
Fibonacci Cluster Version 14 for Ninja 7 (April 2010)

Exported using NT Version 7.0.0.17, will not run on NT 6.5

Indicator displays Fibonacci retracements and extensions for intraday and daily charts based on swing highs and lows.

Labels: Fib lines labeled A-E are calculated from 5-day primary swing highs or lows, those labeled S refer to a recent swing high and low of order 2 or 3, those labeled Y and Z are calculated from swing lows and today’s high and low, if applicable. Extensions from highs and lows that have been taken out are labeled X, you will also find additional support and resistance from prior swing highs and lows that have been taken out. An example: “D+ 76.4 (28 Jan)” means that prices touching this line have retraced 76.4% within a Fib retracement defined by the swing high from January 28 and the lowest low between this date and the end of the session of yesterday.

Multiple Lines: All Fib values are rounded to full ticks. If several Fib values are rounded to the same price, the indicator will display “Multiple Fíb” and display the number of Fib lines.

Lookback period: The indicator will only take into account Fib retracements within the look back period of the chart. You can increase or reduce the look back period of the indicator via indicator dialogue.

Filter: The filter can be set to values between 0 and 100. Default setting is 85. If a swing low defining a Fibonacci retracement occurred 100 days ago, all lows during the following 15 days will be ignored, only lows during the last 85% of the 100 day range will be used for Fib retracements. If you do not want to use the filter, you may set it to 100.

Select your lines: The indicator will display quite a number of lines, usually too many to use it for trading. It is therefore recommended to either use the short or the long end of the lookback period. If you want to use the short end, leave all lines A to Z selected, but reduce the lookback period of the indicator to 5 or 10 days. If you want to select the long end, set the lookback period to a minimum of 100 days, but unselect the Y and Z lines.
 
Suggest other entries I might like
Details: Fibonacci Cluster V14


March 21st, 2010
Size: 34.13 KB
Downloaded: 3180 times

Keywords: confluence fibonacci pivots
ALMA (moving Average) 4 *
Hello,

In attempt to create a new kind of Moving Average with some friends/colleagues (because i was a little bit tired of the classical set of MA everybody's use for the last 10 years), we've created this new one (ALMA)..

The ALMA can give some excellent results if you take the time to tweak the parameters (don't need to explain this part, it will be easy for you to find the right setting in less than hour)..

Arnaud L.

Compatibility:
NinjaTrader 7.0: YES - ZTrade101
 
Suggest other entries I might like
Details: ALMA (moving Average)


March 21st, 2010
Size: 2.36 KB
Downloaded: 994 times

Keywords: moving average alma
High Low Indicator 5 *
Exported using NT Version 7.00.13

Plots text values of prior bar High/Low and a box around the current bar.
Picture says it all really.
Simple but very useful.
March 23rd 2010
v4.01 corrects an occasional error when plotting forex instrument breakouts
April 08 2010
v5 Major Overhaul. Added Breakout reversal detection.
thanks to other NT users for help with some 'issues'
v5.01 correct some misplotting and adds alerts...
Only available in the Elite Circle.
147 downloads and 1 comment is not reward enough!
v6 is now compatible with both 6.5 and 7
Clearly this has gone down well. v9 is way better but you will have to join the elite section guys and girls :-)
Search for HighLowv1065

Compatability: NT7 only
 
Suggest other entries I might like
Details: High Low Indicator


March 18th, 2010
Size: 5.31 KB
Downloaded: 2155 times
Template for building data for persistent indicators
I am in the process of running replay for 10 days to build data for the persistent indicators recorded by Gom & Zondor Recorders for the new front contract months.

Since I had errors it was necessary to remove previous files before starting

I set an environmental variable:

Inst_Name_Month#_year.Binary.dat, &
Inst_Name_Month#_year.Flat.dat

Ex: 6E 06-10.Binary.dat
Ex: 6E 06-10.Mili.dat (think this is the name)


Run a second chart for as long as you need - I do a week - with the following template for each instrument.

This template uses 2 recorders (Gom & Zondor) both recording Binary, milisecond could be used, for a total of up to 4 files of recorded for each instrument. I run one Instrument at a time: Takes less than 30 min.
But someone can play with this...
.
Do it once there and keep up with the data.
Other options are for: IRT, QCollector & QcollectorIQ.
 
Suggest other entries I might like
Details: Template for building data for persistent indicators


March 11th, 2010
Size: 17.90 KB
Downloaded: 178 times
FibConfluence 5 *
Exported using NT 7.0.0.10

dsFibConfluence is a NinjaTrader indicator which draws Fibonacci extensions from various high and low pivot points. The random lines create what is commonly known as the fib cluster or the fib confluence points. The Fibonacci confluences acts as a good support/resistance points.

dsFibConfluence uses the Zigzag function to detect the pivot points, and uses the pivots to draws three fib extention levels. One at 161.8%, the other at 261.8% and the last at 423.6% of the swing.

https://www.volumedigger.com/NinjaTrader/Indicators/dsFibConfluence.aspx
 
Suggest other entries I might like
Details: FibConfluence


March 9th, 2010
Size: 7.55 KB
Downloaded: 1809 times
Inside Bar 5 *
Exported using NT 7.0.0.10

The indicator is a multi-time-frame indicator which detects inside bar in a higher timeframe and shades the region in a lower timeframe.

https://www.volumedigger.com/NinjaTrader/Indicators/dsInsideBar.aspx
 
Suggest other entries I might like
Details: Inside Bar


March 9th, 2010
Size: 2.42 KB
Downloaded: 1972 times
AddOn_UpDown_GomPackage1.1 5 *
Based on my needs, I have added couple new features to some of Gomi's indicators. The 2 new indicators are meant as add-ons (not replacements) to the original ones contained in the current GomPackage1.1.

GomDeltaVol_UpDown (based on GomDeltaVolume):
added option for "negative delta"plot below zero line; added "zero line" plot; disabled TotalVolume plot/calc.

GomCDSMA_UpDown (based on GomCDSMA):
added rising/falling plot color; added "zero line" plot.

Also posted on NT forum.
https://ninjatrader.com/support/forum/showthread.php?t=23283

Enjoy!
--betaride

NinjaTrader 6.5: Yes - ZTrade101
NinjaTrader 7.0: Yes - ZTrade101


See also NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: AddOn_UpDown_GomPackage1.1


February 18th, 2010
Size: 21.03 KB
Downloaded: 3438 times

Keywords: betraride tick gompackage cumulative volume recording delta
MPValues4NT7 5 *
This is same as "MPValues" but works in Ninja 7. I don't know if it works in 6.5.
Wavey gave me the information that allowed me to update for v7.

The values it returns will change if you use it on different time frames. I usually use it on a 30m chart because that will give the same numbers that most people look at. I will transfer the lines to all my charts so that I can trade off these levels if I have confirmation from other indicators.

I circled several of the profitable trades that could have been taken. Of course they don't all work out!

You have to set the start time hour (session begin), start time minute (session begin) and session length.

Ninja 7: YES
Ninja 6.5: ?
 
Suggest other entries I might like
Details: MPValues4NT7


February 7th, 2010
Size: 4.62 KB
Downloaded: 1887 times

Keywords: rsi77 poc mp area profile mpvalues market value
VoulmeStopRefreshv5 5 *
I had a nice write up but it got deleted and I don't remember what I wrote so I just run down the list of new features this time.

- customizable color for diamond, triangle, SR dot
- change dot size
- on/off SR array
- on/off alert
- name it VolumeStopV5( for NT7)

refresh 2/4/2010

- changeable arrays size, styles
- add diagonal arrays
- fix dots length, now number of dots will equal number you enter

COMPATIBILITY:
NinjaTrader 6.5: No
NinjaTrader 7.0: Yes (tested by ZTrade101)
 
Suggest other entries I might like
Details: VoulmeStopRefreshv5


February 5th, 2010
Size: 22.24 KB
Downloaded: 3079 times

Keywords: s/r cory volumestop
VolumeStop_NT7_v3 4 *
thanks for making vol stop v2 top of the month download here is ver 3 it seems to create nice s/r lines, specify the lenght in the parm section. use it to find turning point, triangle is text book signal, diamond is a more iffy signal, try bracket trade around the signal.

2/05/2010
- adapted for use with NT7
- fix triangle up vol not painted
- fix dot length so the number of dots plotted will be the same as the number you enter
- change a square dot to a round dot

ps. it's 100% safe to overwrite the old indicator
100% no re-paint certified

COMPATIBILITY:
NinjaTrader 6.5: No
NinjaTrader 7.0: Yes (tested by ZTrade101)
 
Suggest other entries I might like
Details: VolumeStop_NT7_v3


February 5th, 2010
Size: 12.65 KB
Downloaded: 2739 times

Keywords: s/r cory volumestop
 



 
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