NexusFi: Find Your Edge


Home Menu

 



Categories Help    






Search Results
Submitted by MXASJ
Found 9 matching entries

Sort by

Entries
MarketAnalyzerTools 5 *
This is a variant of the default CurrentDayOHL Indicator that adds optional audio alerts for new intraday highs and lows, and exposes a DataSeries called NewHiLo that can be used for other purposes such as conditional cell formatting in Market Analyzer. DataSeries NewHiLo will be equal to +1 for a trade at the session high, -1 for a trade at the session low, and 0 at other times. It can use Ninja Trader's Session Templates or Daily High/Low data from your data provider. DataSeries BA returns +1 of the last trade was at the Ask, -1 if it hit the Bid, and 0 for otherwise. Note the audio files in use, and change them as required for your installation.

The author's audio files and some development notes can be found at this URL: [SIZE=2][COLOR=black]https://nexusfi.com/ninjatrader-programming/10558-session-hilo-audio-alerts-beta.html[/COLOR][/SIZE]

If you find any errors in the code or have any suggestions, please post in that thread.

For more information on using cell conditinal formating in Ninja Trader, take a look at the online help: [SIZE=2][COLOR=black]http://www.ninjatrader.com/support/helpGuides/nt7/creating_alert__cell_and_filte.htm[/COLOR][/SIZE]


Ver 1.0 13 May 2011 Posted in forum by MXASJ.
Ver 1.01 13 May 2011 Minor refactor.
Ver 1.10 24 May 2011 Posted in Downloads Section.


NT 7.0.1000.5 Compile


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


May 24th, 2011
Size: 4.48 KB
Downloaded: 1336 times
Volatility Pack 5 *
This is a collection of indicators I use with NT for volatility studies. It includes:

HistoricalVolatilityRainbow: 10/20/30/60 Day HV plot.
HistoricalVolatilityZScore: ZScore of the HV, with default 2 SD markers.
LogReturns: Useful for a lot of things.
LogRetrunsZScore: ZScore of the above, with markers at 2, 3 and 4 SDs.

Some of these were floating around in threads, now they are all updated and available as one download.

Note the HV studies use the "traditional" definition of HV, and therefore only work on daily bars.

NT 7.0.1000.5 compile.


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


May 17th, 2011
Size: 12.96 KB
Downloaded: 429 times
ExportData 5 *
I've converted the indicator ExportChartData to a Strategy to make it easier to apply against a basket of instruments. Thanks to BigMike and Sam for some older comments and code that inspired this .

Next releases will include enums to select various DateTime output formats. It is currently outputing POSIX-style DateTime. Feel free to make it better!

Strategy ExportData changelog:

24 February 2011: ver 3.35 posted. Significant refactor. Adds enums for DateTime output formats, delimiters, file types. Adds user-configurable output preferences for export to Matlab and R, and a code example for exporting indicator data with timeseries data.
21 February 2010: ver 3.00 posted
22 February 2010: ver 3.01 posted. Deleted Print statements that were used for debugging and changed an if/if to an if/else to save processor power.
22 February 2010: ver 3.10 posted. Added OnStartUp() and OnTermination() methods and moved code there from OnBarUpdate() for efficiency.
2 November 2010: ver 3.2 posted. Fixed bug where spaces in path names would throw an exception, added better exception handling, added Print statements in OnStartUp() and OnTermination(). NT7b23 compile.

Compatability:
NT7 only


Category NinjaTrader 7 Miscellaneous 
 
Suggest other entries I might like
Details: ExportData
Category: NinjaTrader 7 Miscellaneous 


February 24th, 2011
Size: 5.95 KB
Downloaded: 911 times

Keywords: export mxasj
ConnectionMonitor for NT7 5 *
This Strategy does not trade, but instead does three things:
- Checks that your PC clock is accurate
- Alerts you if the delay in your receipt of exhange data exceeds a threshold
- Optionally ping a remote IP host and alert you or get flat if the host is unreachable.

This has been tested on Zen-Fire and IQFeed data.

Version 2.32. NT7b17 compile. Feedback welcome!


Category The Elite Circle 
 
Suggest other entries I might like
Details: ConnectionMonitor for NT7
Category: The Elite Circle 


June 24th, 2010
Size: 5.31 KB
Downloaded: 510 times

Keywords: mxasj connectionmonitor
LogReturnsZScore 4 *
This indicator plots the z-score of the log returns of a time series. It can be used to indicate periods of high and low volatility.

Ver 1.00 posted 20 June 2010

NT7b17 compile


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


June 19th, 2010
Size: 5.97 KB
Downloaded: 339 times

Keywords: mxasj volatility zscore
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.


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


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

Keywords: mxasj ratio
ZScore
A ZScore indicator for NT7. ZScore looks at deviations from the moving average, and this plots an oscilator in a new panel. Note in the attached chart where Bollinger channels are breached and where ZScore lines are breached. Help make it better!

Changelog:

4 March 2010: Version 2.00 posted.
22 April 2010: Version 3.00 posted. Revamp of code, same calculation logic.

Compatability:

NT7 Only


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


April 22nd, 2010
Size: 5.80 KB
Downloaded: 750 times

Keywords: oscilator zscore mxasj bollinger ma
ExportChartData 5 *
This is an NT7 indicator used to write timestamped OHLC and volume data from the open chart to a text file for analysis outside of NT (Excel, Matlab, R, etc). It gives you the option to use different characters for delimiting files, as well as the option to split Date and Time into two separate fields. Upcoming features include custom DateTime formats.

Feel free to help make it better!

Change Log:
30 Jan 2010. Ver 1.0 posted.
31 Jan 2010. Ver 1.1 posted. Cleans up the code and displays variables for planned future enhancements.
20 Feb 2010. Ver 2.0 posted. Split path and file name options and added filename default to instrument name/barstype/periodicity, which should make batch usage easier. MXASJ stopping development of this as an INDICATOR in favor of a STRATEGY called ExportData which will be posted seperately.


Category NinjaTrader 7 Miscellaneous 
 
Suggest other entries I might like
Details: ExportChartData
Category: NinjaTrader 7 Miscellaneous 


January 30th, 2010
Size: 3.42 KB
Downloaded: 296 times

Keywords: export mxasj
MTF momentum strategy focused on the ADXVMA 4 *
I've been working on a multi-timeframe momentum strategy focused on the ADXVMA for a few months now. It uses 4 Range bars for entries and 11 range bars for filters. No secrets, the code is below (keep it amongst the Elite brothers and sisters please).

Details here.

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


Category The Elite Circle 
 
Suggest other entries I might like
Details: MTF momentum strategy focused on the ADXVMA
Category: The Elite Circle 


December 3rd, 2009
Size: 4.08 KB
Downloaded: 684 times

Keywords: adx adxvma mxasj mtf
 


 
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