PDA

View Full Version : EOD Strategy Kinetick


bobido
11-16-2010, 03:52 PM
Hi there,

I'm trying to run the standard MA crossover strategy on all default currencies using NT7(Sim Account) with Kinetick on end of day data, set up to IB. This worked on intraday quotes(IB only), but with eod the strategies stay... yellow. Is this possible, or am I doing something wrong here :confused:
btw iam currently using a free license

Thanks in advance!

NinjaTrader_RyanM
11-16-2010, 04:03 PM
Hello bobido,

Yellow means that the strategy is waiting for a flate state before entering.

Most likely the difference between the daily and intraday versions of this strategy is that the intraday will process exit on close. Each session then starts in a flat state.

Since the SampleMACrossOver has only entries, it can't reach a flat state running on daily bars.

If you want to run this in real time, you may consider saving a copy and only running it on real time data. Edit the strategy > Right click in compiler >Save As > provide a new name.

To force the strategy to only run on real time data use:
if (Historical) (http://www.ninjatrader.com/support/helpGuides/nt7/historical.htm)
return; (http://www.ninjatrader.com/support/helpGuides/nt7/historical.htm)

bobido
11-22-2010, 05:22 AM
Thanks, I've managed to do so.

Just another question on the subject. The strategie now only produces executions and not orders on the sim account. Will it keep generating executions on the eod, each day?

NinjaTrader_Bertrand
11-22-2010, 06:57 AM
You would see the historical execution listed, correct - it would trade live (on Sim101) on the opening on the new day after the signal to reverse was generated.