PDA

View Full Version : Loving and hate.


crunchy
04-30-2009, 06:12 AM
I realy think that NT is a wonderful product, It's just unstabil, some times backtesting works ,some times it don't, it's frustrering.
I just modified a strategie, working fine when the code in not unlocked,
and then I unlock it at use steam.io to write to a fine, it compiles fine, but then running backtesting, and no result come back!!!.
I think something that could be good for NT, is Step by Step line debug, or else I have no idea what is not working.
Ahhhhhhhhhhhhhh, frustrering.

but all together I realy love your product, just wishes it was more stabile.
Crunchy

crunchy
04-30-2009, 06:23 AM
Feks, this compile fine:

using system.io;

privatevoid Write2File(string msg, string filePath)
{
FileStream fs = new FileStream(filePath, FileMode.Append);
StreamWriter sw = new StreamWriter(fs);
sw.WriteLine(msg);
sw.Flush();
sw.Close();
fs.Close();
}

Crunchy

NinjaTrader_Bertrand
04-30-2009, 06:37 AM
Thanks for the input and feedback crunchy - we're always looking to improve NinjaTrader as well it's stability and performance.

When you compile each error is listed on the bottom, simply doubleclick on it to see the code line raising the issue, maybe also this tip can help - http://www.ninjatrader-support2.com/vb/showthread.php?t=3418

This one here will help you tracking run time errors and exceptions better - http://www.ninjatrader-support2.com/vb/showthread.php?t=9825

crunchy
04-30-2009, 07:15 AM
Thanks alot guys,
you are great :-)

Crunchy