is it any better than ninjatrader or tradestation?
Well, that depends on what you want to do. On both counts people like the fact it's open source. But there's tons of open source trading tools.
Where TickZOOM really shines is when processing tick data. Neither one of those can do a decent job because they overload PC memory or take to doggone long to process ticks.
TickZOOM can process 10,000,000 ticks for 5 years of data in 40 seconds. You can watch a video demo at tickzoom.org
Now for writing your trading rules, TickZOOM uses C# but it has added in all the "easy" parts of easy language and fixed the not easy parts. So it handles data series the same way as easy language. Index 0 is now, 1 is previous, etc. And it also gives you data arrays that work the same way (unlike EL) plus ordinary data arrays.
Compared to writing strategies in Ninja it's much easier since you have EasyLanguage like data series. Plus TickZOOM invisibly and magically checks the bounds of your arrays like EL. In Ninja it gets messy checking CurrentBar to avoid causing an exception. Plus, it's cool in TickZOOM that you can run the entire system in the debugger, set a break point on a
specific bar and step through your strategy. It makes finding bugs much faster.
NOTE: TickZOOM has nice looking charts but ZERO manual control for drawing lines, etc. In TickZOOM you do
all the drawing in your trading rules. Why? It's because TickZOOM is built to automate your trading system and even comes with a black box server so you can roll it out to live trading, hands free.
NinjaTrader in theory can handle black box trading but there' no way to turn off the charting and so it's difficult. TickZOOM runs in black box mode without a GUI. In that case it writes stats to a file system in HTML so you can look at them.
Now comparing data, TickZOOM supports any combination of bar intervals in the same strategies. It supports mixing bar and time series with range, volume, tick, point & figure, and other types of bars.
In other words, TickZOOM is comparable to those but very different. It's primarily for professional black box traders or those who want to become one.
Hey, the major down side to TickZOOM right now is that it's new so it doesn't have tons of indicators already available.
Any specific questions?
Wayne