NexusFi: Find Your Edge


Home Menu

 



Categories Help    






Search Results
Found 2328 matching entries

Sort by

Entries
DOM_Bands_v2 by ZTrade101 updated for NT7 5 *
The upper plot is the total number of shares or contracts offered for sale in the Level 2 order book. The lower plot is the total number of shares or contracts bid to buy in the Level 2 Order Book. The yellow plot is the bids minus the offers.

Maxrows is the user setting that controls how many rows of the order book are counted. In panel 2 we have the totals for all ten of the bid and all ten of the ask rows. In panel 3, with Maxrows set at 5, we see the totals for the 5 inside rows of bid and ask.

This will work in realtime or market replay mode. Changing any chart settings deletes existing plots, and there is no backfill. This limitation is because of the way Ninjatrader stores data. I started working on a DOMRecorder indicator to correct this. May take a while.

Thanks ZTrade for the idea of this indicator, and for the original implementation which worked fine in NT6.5 but had problems because of undocumented changes in NT7.

NinjaTrader 7.0: Yes - Zondor


Category The Elite Circle 
 
Suggest other entries I might like
Details: DOM_Bands_v2 by ZTrade101 updated for NT7
Category: The Elite Circle 


February 1st, 2010
Size: 3.32 KB
Downloaded: 1151 times

Keywords: dom tape zondor ztrade101
Donchian Channel 4 *
Another port from Ninja of the popular Donchian Channel.

Category MultiCharts 
 
Suggest other entries I might like
Details: Donchian Channel
Category: MultiCharts 


October 5th, 2010
Size: 2.25 KB
Downloaded: 322 times
Donchian Channel 5 *
MultiCharts .NET64 Version 12.0 Release (Build 18187)

 
Code
using System;
using System.Drawing;
using System.Linq;
using PowerLanguage.Function;

namespace PowerLanguage.Indicator
{
	public class Donchian Channel : IndicatorObject
	{
		public Donchian Channel(object _ctx):base(_ctx)
		{
			n_bars = 5;
		}

        [Input]
        public int n_bars { get; set; }
		
		private IPlotObject plothigh, plotlow;
		
		protected override void Create()
		{
			plothigh = AddPlot(new PlotAttributes("plothigh", EPlotShapes.Line, Color.Red));
			plotlow = AddPlot(new PlotAttributes("plotlow", EPlotShapes.Line, Color.Red));
		}
		
		protected override void StartCalc()
		{
		}
		
		protected override void CalcBar()
		{
			if(Bars.High[5] > 0 && Bars.Low[5] > 0)
			{
				plothigh.Set(Bars.High.Highest(n_bars));
				plotlow.Set(Bars.Low.Lowest(n_bars));
			}
		}
	}
}


Category MultiCharts 
 
Suggest other entries I might like
Details: Donchian Channel
Category: MultiCharts 


October 7th, 2019
Size: 1.73 KB
Downloaded: 137 times
Donchian Channel for TOS 5 *
I'm not sure why TOS wouldn't have it to begin with, but for those who want it, here's the Donchian Channel study for TOS.


Category ThinkOrSwim 
 
Suggest other entries I might like
Details: Donchian Channel for TOS
Category: ThinkOrSwim 


August 23rd, 2013
Size: 361 bytes
Downloaded: 725 times
Donchian Channel Trading
This indicator is a donchian channel with fib lines surrounding it for targets or to indicate overbought/sold potential.


Category MetaTrader 4 Indicators 
 
Suggest other entries I might like
Details: Donchian Channel Trading
Category: MetaTrader 4 Indicators 


January 3rd, 2010
Size: 5.82 KB
Downloaded: 416 times
Donchian Channel with Trendfilter 5 *
Exported using NT version 7.0.1000.27

This is a generalized version of the Donchian Channel with a few options added:

- The Donchian Channel lines can be calculated from High/Low, Close, Typical or Weighted price. With the default option High/Low they will be calculated from the highest high and lowest low over the lookback period. With the other options the highest and lowest of the selected input series are used, which produces narrow channels.

- The indicator has an option to display outer channels, inner channes or midband individually.

- The indicator comes with a fast and a slow trend filter. The fast trendfilter changes direction, when the midband breaches the prior low of the upper band (trend change up) or when it breaches the prior high of the lower band (trend change down, as shown in the chart attached). The slow trendfilter changes direction, when the lower band breaches the prior low of the upper band (trend change up) or when the upper brand breaches the prior high of the lower band (trend change down, as shown in the chart attached.

- The indicator allows to display the fast trend, the slow trend or a combination of fast and slow trend, when appropriate colors are selected. If you want to show the fast trend only, you need to use identical colors for fast/slow uptrend and fast/slow downtrend. If you want to show the slow trend only, you would need to use the same colors for slow uptrend/fast downtrend and fast uptrend/slow downtrend. Both trendseries are exposed as public BoolSeries and can be called in an automated strategy.

- The trend can be displayed via the channel and midband colors or via paint bars. The indicator also has an option to display the channels or the midband individually. If you just need the paint bars, you can disable all plots.

Update October 4, 2012: Channel and paintbar colors will now align, when indicator is displaced.
Update July 5, 2015: Second channel added to indicator.


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: Donchian Channel with Trendfilter
Category: NinjaTrader 7 Indicators 


July 6th, 2015
Size: 8.28 KB
Downloaded: 3013 times

Keywords: donchian paintbars trendfilter
Donchian MA with color ver 1 5 *
This is a moving average between minimum and maximum value of a look back period thus it can be used to filter out some market noise.

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


Category NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: Donchian MA with color ver 1
Category: NinjaTrader 6.5 Indicators 


December 12th, 2009
Size: 5.04 KB
Downloaded: 643 times

Keywords: donchian ma ninjatrader
Dot For VOL 5 *
Puts a dot on top of volume bar when your desired "High" volume criterion is met.
In past I had a horizontal line at my desired volume, but could not tell for sure until I checked the bar.
This way NT7 does the checking for you.

Hope this one is not considered to simple.

I am fairly new to programming and this indicator plots a Dot at the top of the volume bar or where the volume bar would be when the last bar exceeds a user selected volume in your indicator panel (default is 30,000). It can be used with or without VOL. (Best to load both in the same panel)
Also the Blue dot works best at size three, but that too is selectable (You don't even need to use the dot and select another plot style.)

Fairly simple code and easily changed. Works with any time frame that VOL works with; however VOL indicator is not totally necessary, but helps for visual display.

Also if you want to just unzip this indicator before importing it to NT7:
DotForVol.zip contains three files:
DotForVol.cs This is a text file containing my code. If you rename it to DotForVol.txt you can use any editor to view the code.
DotForVol.dll Compiled code for NT7
Info Not sure how this file works, but sure there is a reason for it, as NT7 exporter put it in there.

This is my first version 1.0.0.1 5/28.2014
Second version 1.0.0.2 6/2/2014 (Added an offset to plot above volume bar and a default of 3 for dot size. All of which can be changed without recoding the indicator the offset default is 10,000 and shows in MISC and can also be changed.)

20 OCT 2014 Added sound option for indicator. Couldn't figure out quickly how to include while zipping with NT7 and will include .WAV file separately. Just copy the .wav file into your /sounds/ folder and it should work. Note: this is a work in progress for me. I have borrowed code from MACD Color, and will be working in the future to clean up my code. Also this time I zipped without creating the .dll files. I learned that doing it that way makes it so you can see my code. Before I thought I had done this... Who knew there were different .cs files with same name when you make an indicator depending on how it is compiled. Man I have a lot to learn. Well Uploading now as I have taken a short break today to finish this. Okay... Well didn't have time today to make this perfect Here is link to update in my journal where I uploaded the files indicator and wav file. I'll do my best to fix things up and get back to this later. Just don't have the time for perfection right now.... https://nexusfi.com/trading-journals/27901-my-yellow-brick-road-bd92154-30.html


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: Dot For VOL
Category: NinjaTrader 7 Indicators 


May 28th, 2014
Size: 2.60 KB
Downloaded: 250 times
Double CCI Paintbars version 01 3 *
Indicator paints when confirming both CCIs above or below zero. Can use one CCI for trend and other for entries and exits similar to Jeff's CCI - but longer frame CCI for trend instead of MAs. CCI lengths are adjustable inputs. Need to change color of your instrument bar to the neutral color (yellow in my case). Noob with EL so take it easy on me.


Category MultiCharts 
 
Suggest other entries I might like
Details: Double CCI Paintbars version 01
Category: MultiCharts 


February 4th, 2011
Size: 2.42 KB
Downloaded: 432 times

Keywords: cci paintbar
Double Defined 4 *
Identifies double tops and bottoms with audio alerts.

Inputs.
NumBarsMax -- The maximum number of bars acceptable between a double top / bottom.
NumPlotsBarsMax - The maximum number of bars acceptable to plot once a double top / bottom is found
NumTicksMax - The maximum number of ticks acceptable to correlate a double top / bottom.
PatternType - Future expansion. leave at default for now.
SoundAlertDown - The audio alert played if a bottom is broken
SoundAlertUp - The audio alert played if a top is broken.
Strength - The swing strength to find a single top / bottom
UseAudioAlert - Audio alerts on / off?
UseChartMarket - Chart markers on / off?

(Commissioned by me, non - copyrighted)

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


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


February 5th, 2010
Size: 6.54 KB
Downloaded: 966 times

Keywords: doublebottom doubletop itguy
 



 
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