Archive

Posts Tagged ‘ninjatrader’

Ninjatrader And Mt4 Indicators

June 5th, 2011 Comments off

I am looking for an experience programmer to do 2 indicator projects.

Convert a standard Heiken Ashi indicator which can be found in NinjaTrader 7 into an MT4 indicator.

And converting an MT4 Stochastic indicator (in attachment) into a Ninja Trader indicator. Need to have sound alert when Stochastic indicator make a V turning point.
I don’t know if you could code it that way? if not, maybe when indicator reach overbought oversold area which is around 30 and 70.
Could you make the stochastic and overbought oversold parameters adjustable please? in case I need to change it later.

Stochastic setting is:

Kperiod 7
Slowing 2
Dperiod 3

Please indclude an instruction to install this indicator into the platform. I am new to Ninja Trader 7 platform.

Thanks

Ninjatrader Strategy

February 25th, 2010 Comments off

This is the core Strategy. There will be additional filter criteria added once this functionality is tested: (not Ajax, had to check a box, but no NinjaScript option???)

Inputs:
TradeBarHeight (default 10)
TradeTimeStart (default 0800)
TradeTimeEnd (default 0801) (broker times fine for this…)
StopLoss: (default 3)
TakeProfit (default 50)

Entry Logic:
5 sec chart
enter if bar height is >= TradeBarHeight (10pips), in the direction of the move.

Short: open – close >= 10p
Long: open – close <= -10p.

Enter trade at the close of this “big” bar.

(Seems simpler to use open/close rather than hi/lo, as if you watch 5 sec charts, most all bars are open/close bars, and especially with these long entry bars…..)

The time window is important.

Easylanguge Indicators

February 18th, 2010 Comments off

I have a few NinjaTrader indicators that I want converted to MultiCharts (EasyLanguage). In all cases, the NinjaTrader code is complete (no external indicators or DLL’s).

Indicator 1:
NinjaTrader code is only a dozen lines long. The code simply paints a candlestick based on the Close of the prior bar.

Indicator 2:
NinjaTrader code is only a couple dozen lines long. The code simply draws 11 plots, each plot has a unique color. There is a base (midline) plot, and then 5 upper and 5 lower plots. The midline plot is calculated very simply. The upper and lower plots are just very simple math above and below.

Indicator 3:
Creates a daily ATR, regardless of what size/time frame the indicator is added to, it will always output the daily ATR. The NinjaTrader source is about 30-40 lines of code.

Indicator 4:
Fibonacci retracements and day markers. I have NT source but probably better to just create from scratch. Plots Day High, Day Low, Yesterday High, Yesterday Low. Then plots Fib levels between the current Day high and current Day low, marking -61.8%, 23.6%, 38.2%, 50%, 61.8%, 76.4%, and 161.8%.

Indicator 5:
Weekly pivots. Just need some visual enhancements over the basic floor pivots/weekly pivots. Also add a couple new plots for Prior Week high and low.

In each case, I have screen shots and working code from NinjaTrader. I just want to convert these to MultiCharts (am using 6.0) and maintain the same visual appearance I am accustomed to with NinjaTrader.

I will retain complete copyright and own the property after you do the conversion. You cannot resell the NinjaTrader code I give you, nor can you resell the EasyLanguage code you create for me.

Thanks,
Mike

Bear