Quote from Runningbear:
I can't believe you guys can teach yourself to program in two months.
I tried to teach myself visual basic. i read all the books like 'idiots guide to visual basic' and a bunch of other stuff.
I never go past the "Hello World' or the clock tutorial. It'a hyroglifix to me. I just can't do it.
What's the secret?
Runningbear

but still the baby maybe can crawl, maybe it can't.Quote from Batman28:
hi
those applications are great for starters, but anyone who is serious about this type of work I suggest you build your own solution from scratch as you will discover serious limitations ..
Quote from Runningbear:
I can't believe you guys can teach yourself to program in two months.
I tried to teach myself visual basic. i read all the books like 'idiots guide to visual basic' and a bunch of other stuff.
I never go past the "Hello World' or the clock tutorial. It'a hyroglifix to me. I just can't do it.
What's the secret?
Runningbear
The screenshots look just like Matlab.Quote from sharpquant:
Damn, I was thinking to build an IDE allowing to create strategy using visual programming just like Alphacet does, that was 3, 4 years ago when I had this thought but got carry away by day jobs.
Now I still want make one and give it for free. Why? because I need one like that for myself and I can't afford alphacet.
I gather you don't use any part of NeoTicker order interface and send orders directly to the broker. Do you still run your trading strategies as NeoTicker indicators when traidng live?Quote from Pippi436:
My opinion on the retail products: the better ones like OQ or Neoticker all do a fairly good job of simulating low/mid frequency daytrading strategies where latency doesn't play a big role. They all work basicially in the same way, you write code that reacts on a new tick or new bar, can look at historical/rt quotes and act accordingly.
The weak link often times is the marketdata and broker interface (and maintainance thereof), gracefully recovering from a network or broker outage and supported order-types.
If you want something like that, there is no point in reinventing the wheel, especially if you are a one-man show you have to focus on trading. Its however possible to use an existing product and only redo the parts that suck. I.e. i use Neoticker only for analysis and decision making, and a custom OMS that handles all the rest (execution tactics, connectivity, a persistance layer, position sizing/risk etc.). Its much more manageable than starting completely from scratch.
Quote from LeeD:
I gather you don't use any part of NeoTicker order interface and send orders directly to the broker. Do you still run your trading strategies as NeoTicker indicators when traidng live?
I understand your trading systems are in C#. Have you done any performace benchmarks with NeoTicker compared to Delphi or C++? Or is speed of backtest totally immaterial for you?Quote from Pippi436:
Yes, decisions are made inside neo-indicators, who send out messages (using WCF) to my custom OMS application. Nothing is reported back to Neoticker tho. I found the neoticker order-interface is too simplistic, since it has to be the lowest common denominator of all supported brokers ordertypes.