NexusFi: Find Your Edge


Home Menu

 



Categories Help    






Search Results
Searching for entries matching range, looking in title and description, keywords for any words
Found 278 matching entries

Sort by

Entries
Volume Spikes _V2 4 *
It provides a overviw of Volume at peaks. So that are possible Turning points. It better works on 5Min, 10Min and Range 6 Charts. Its signals can only be considered when some other indicators are also supporting.It generate signals at Bar Close.


COMPATIBILITY:
NinjaTrader 6.5: YES
NinjaTrader 7.0: [COLOR=#0000ff]NOT TESTED [feedback][/COLOR]


Category NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: Volume Spikes _V2
Category: NinjaTrader 6.5 Indicators 


June 20th, 2009
Size: 2.58 KB
Downloaded: 934 times

Keywords: ninjatrader spike volume kjaved
Volume Stop v2 0 *
inspire by Better Emini stop volume indicator but I add many changes to eliminate or include some of reversals that the original miss.
here is version 2 with RJay help it also colors the vol bar.
note: it seems works better on 5m or RJay no gap range bar.

COMPATIBILITY:
NinjaTrader 6.5: YES
NinjaTrader 7.0: NOT TESTED [feedback]


Category NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: Volume Stop v2
Category: NinjaTrader 6.5 Indicators 


September 6th, 2009
Size: 2.24 KB
Downloaded: 449 times

Keywords: cory ninjatrader stop volume
VolVsRange
An indi for TradeStation designed to show high-volume bars
without having to devote a separate pane to an indi. It
marks them with the character in the variable vChar - "o" in
the picture.
It simply plots an ma of volume and marks bars which exceed
it by the value in the variable vadjust.
The bottom pane in the picture, which is a different but
similar indi, shows the principle.
Why the longest volume bar in that pane is not signalled by
VolVsRange I don't know - unless it's off the chart.

The code (let me know if there are errors in it - it was one
of my first tries) :

 
Code
{ Indicator } 

Inputs: 
UpColor(Black) , DnColor(Red) , vAvg.length(9) , vadjust(1.8) , VolAlert(false) , vChar("o"), offset(0.5) ; 

Variables: 
vol(0) , avgv (0) , volvlen(0) , barlength(0) ;

If BarType >= 2 then vol = Volume else vol = Ticks;    

vol = volume ;
barlength = H - L ;
if vol > 0 and barlength > 0 then 
   volvlen = vol / barlength 
else 
   volvlen = 0 ;

avgv = averageFc(volvlen, vAvg.length) ;

if volvlen > avgv * vadjust and O[1] > C[1] then 
  begin
    Value1 = Text_New(D,T, Low - Range * offset, vChar );        // down bar 
    Value2 = Text_SetColor(Value1,UpColor);
    If VolAlert = True then 
      begin
      Alert("VolvLen down ");
      End;
   End;

if volvlen > avgv * vadjust and C[1] >= O[1] then 
  begin
    Value1 = Text_New(D,T, High + Range * offset, vChar ) ;     //up bar 
    Value2 = Text_SetColor(Value1,UpColor);
    If VolAlert = True then 
      begin
        Alert("VolvLen up ");
      End;
  End;


Category TradeStation (hidden) 
 
Suggest other entries I might like
Details: VolVsRange
Category: TradeStation (hidden) 


November 25th, 2011
Size: 8.11 KB
Downloaded: 287 times
Vortex Indicator 5 *
Version 1.0

The Vortex Indicator consists of two oscillators that capture positive and negative trend movement.
A bullish signal triggers when the positive trend indicator crosses above the negative trend indicator or a key level.
A bearish signal triggers when the negative trend indicator crosses above the positive trend indicator or a key level. The Vortex Indicator is either above or below these levels, which means it always has a clear bullish or bearish bias.

Calculation of the Vortex Indicator can be divided into three parts. First, calculate the positive and negative trend movements based on the highs and lows of the last two periods. Positive trend movement is the distance from the current high to the prior low. The further the current high is from the prior low, the more positive the trend movement. Negative trend movement is the distance from the current low to the prior high. The further the current low is from the prior high, the more negative the trend movement. These periodic values are then summed based on the indicator setting, which is the usually 14 periods.

The second part involves the True Range, which was created by Welles Wilder. This indicator uses the current high, current low and prior close to measure volatility

The third part normalizes the positive and negative trend movements by dividing them by the True Range. In effect, the Vortex Indicator shows volatility-adjusted positive trend movement and volatility-adjusted negative trend movement. The end result creates to indicators that oscillate above/below 1.

Please Keep in mind that the Vortex Indicator is not designed as a standalone indicator.


Category MultiCharts 
 
Suggest other entries I might like
Details: Vortex Indicator
Category: MultiCharts 


April 26th, 2014
Size: 3.19 KB
Downloaded: 246 times
VSR Indicator v1 5 *
Volume/Stochastic/Reversal Bars
wanted to go ahead and share something that Big Mike wrote for me that may help you in your trading. This indicator utilizes Volume, Stochastics, and Reversal Bars, to plot out potential reversals in the market.

I have found that it works especially well with Range Charts. I will say the Volume component has to be tuned down under 1.00 or a lot of triggers get filtered out. Probabably some enhancements could be made in that arena.

Caution should be taken on Trending days as a lot of false signals will be generated. It is best used as a supplement to other indicators.

https://nexusfi.com/elite-circle/769-vsr-indicator-volume-stochastic-reversal-bars.html


Category The Elite Circle 
 
Suggest other entries I might like
Details: VSR Indicator v1
Category: The Elite Circle 


June 13th, 2010
Size: 13.09 KB
Downloaded: 783 times
vvVolumeAndRangeToAverage 5 *
Based on Fat Tails brilliant anaIntraDayVolume.

This indicator shows the session volume so far compared to the average for that weekday and time of day.

Thread for discussion: https://nexusfi.com/elite-circle/24373-vvhgs-little-helpers-keeping-them-one-place.html


Current Version: 1.0


Feb 04.2014
Renamed to vvVolumeAndRangeToAverage.
Now can also show (total) Range to average range.

vvhg


Category The Elite Circle 
 
Suggest other entries I might like
Details: vvVolumeAndRangeToAverage
Category: The Elite Circle 


February 5th, 2014
Size: 6.77 KB
Downloaded: 1081 times
Welles Wilder True Range
I need True Range for another indicator that I am creating. Comments are welcome if anyone finds an error. Nothing came up in search so I wrote the code. Version 1.0.0.0 (My first Ninjatrader code, I am a SQL Server DBA/C#developer by day)


This is the website that has the basic equations:
https://stockcharts.com:443/school/doku.php?id=chart_school:technical_indicators:average_true_range_atr


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: Welles Wilder True Range
Category: NinjaTrader 7 Indicators 


March 17th, 2013
Size: 2.18 KB
Downloaded: 135 times
Wicks 5 *
It's common for people to look at how large the upper or lower 'wicks' or 'shadows' are in comparison to the range of a bar. In writing strategies that do so, I got tired of re-re-coding calculations to look for especially large ones.
So, I created an indicator that shows the upper and lower wick size as a percentage of the bar's range. So, now, if I want to specify a wick that's greater than 50% of the bar's range, I can just look for instances where the indicator values are UpperWick > 50 or LowerWick < -50.

If you find looking for negative numbers cumbersome, edit the indicator and reverse the LowerWick calculations, from either (Low[0] - Open[0]) or (Low[0] - Close[0]) to (Open[0] - Low[0]) or (Close[0] - Low[0]), respectively. Then, all the histogram bars will point upwards and you can make your code always look for positive values.

I hope some of you find this indicator handy.

I neglected to account for instances where Range() is zero, so the original indicator sometimes stops working. This newer version corrects that problem.


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: Wicks
Category: NinjaTrader 7 Indicators 


November 5th, 2017
Size: 3.29 KB
Downloaded: 171 times
Wicks V1 5 *
It's common for people to look at how large the upper or lower 'wicks' or 'shadows' are in comparison to the range of a bar. In writing strategies that do so, I got tired of re-re-coding calculations to look for especially large ones.
So, I created an indicator that shows the upper and lower wick size as a percentage of the bar's range. So, now, if I want to specify a wick that's greater than 50% of the bar's range, I can just look for instances where the indicator values are UpperWick > 50 or LowerWick < -50.

If you find looking for negative numbers cumbersome, edit the indicator and reverse the LowerWick calculations, from either (Low[0] - Open[0]) or (Low[0] - Close[0]) to (Open[0] - Low[0]) or (Close[0] - Low[0]), respectively. Then, all the histogram bars will point upwards and you can make your code always look for positive values.

I hope some of you find this indicator handy.

Thanks go to jmont1, who graciously converted this indicator to NT8.


Category NinjaTrader 8 Indicators and More 
 
Suggest other entries I might like
Details: Wicks V1
Category: NinjaTrader 8 Indicators and More 


November 15th, 2017
Size: 3.54 KB
Downloaded: 304 times
Wide Range Body and Hidden Gaps 5 *
Hello Traders, a few months ago, a trader that I met through BigMikes turned me on to The Strategy Lab.[URL="http://www.thestrategylab.com"] There is a lot of free material there to study. The more that I read, the more that I liked the concept, so I built an indi to show the Wide Range Body (WRB) and WRB Hidden Gap. The concept is to show increasing volatility and areas of support and resistance. I encourage you to read the free material.

This NT7 indicator will work on every chart type although it does not make any sense on some range restricted charts. It colors the candle of the WRB and paints a rectangle for the WRB Hidden Gap. It also draws a vertical line for a WRB in the event that you use it on a PnF chart since there is no candle to color. You can choose the colors and audio indications for the WRB and the WRB Hidden Gap and the line width for the WRB line.

If you are interested in the WRB Zones, I have heard that there is an indi on the Strategy Lab site called Mr Zones that works fine with this indi.

Trade Well
Bob


Category The Elite Circle 
 
Suggest other entries I might like
Details: Wide Range Body and Hidden Gaps
Category: The Elite Circle 


January 10th, 2016
Size: 3.00 KB
Downloaded: 936 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