Search results

  1. J

    SQL Server Service Broker

    If you are interested in a broker with transactional safety/ concurrency then consider a Service Broker in .NET for instance MassTransit or NServiceBus. They are great frameworks and can handle a high throughput. I recommend such instead of going with SSSB that as previously mentioned is...
  2. J

    SQL Server Service Broker

    Yes I have thought about it, but I realized it was too slow and the architecture was too stupid demanding Sql Servers everywhere. Are you developing in c#?
  3. J

    Programmer monthly rate (Java multithreading IB Platform)

    LOL... try get a programmer for such money. I don't believe it's trivial to program such IB multithreaded. The best you can do is the ask for some code and review it, I guess you will find that the best code costs the most. i.e. 15-20/month Good luck
  4. J

    Historical Data Timeframe Converter

    How is you data stored?
  5. J

    Quotes Data Historical for futures ?

    Or better.. .use my TickCreator :D If you can create a strategy based at random data you have something, otherwise keep continue inking your eyes :eek:
  6. J

    Tick Trade Creator

    Hello In the process of building a Trading Engine I needed a tick trade generator, so I developed one :D The reason for my needs can be found in performance testing, writing to disk, locating trades, grouping/ averaging, simulating trades etc. Not that it is such a big task, but...
  7. J

    How to obtain the value of MA(Sterling Trade Pro)

    Probably get the value of Moving Average, when using Sterling Trader Pro.
  8. J

    How HFTers overcome this?

    It could still be interesting to hear their answer.
  9. J

    How HFTers overcome this?

    You could ask Dukascopy :) It would be interesting to see their answer here as well.
  10. J

    LINQ is a Monad

    That is somewhat similar to what I've experimented with. (well not the same naming). Anyway... what you are showing is not not Linq, just fluent interfaces/ methods. If it should be Linq it would take an expression/ functional represention as input... for instance: RealtimeData...
  11. J

    BackTesting vs WalkForward

    I am aware of the concept. An indicator is something that indicates something... Accumulating volume is indicating total volume over some period of type. As soon as a person starts to think about building a strategy he will always use indicators, my post was just to say "avoid those lagging...
  12. J

    BackTesting vs WalkForward

    async, you have disablet pm.
  13. J

    BackTesting vs WalkForward

    Certainly it would, but when I say lagging indicators I refer to those MACD, RSI etc. that all has a reputation of the holy grail in newbie-eyes. One can say that price and volume is indicators, sure volume is an indicator as it indicates the volume, but lagging indicators is magic calculus...
  14. J

    BackTesting vs WalkForward

    Curvefitting = Optimization !! In my early days I actually believed in such crap, now I'm building on a system that simply just works without lagging indicators.
  15. J

    BackTesting vs WalkForward

    Very simple, no need to buy a book for such. Backtesting is based at curvefitting over a period, for instance curvefitting/ optimizing the last year looking for 30min trades. Then your optimixer will calculate the gain/ loss and you will clap your hands and look very happy sitting there...
  16. J

    Java vs C++ or C#

    Please google this, before writing :cool: , it is a truth with modification when speaking about C# Please read this regarding performance between C++ and C#: http://www.codeproject.com/KB/cs/CSharpVsCPP.aspx
  17. J

    Visual Basic

    hehe... thank you, well one can never know it all, besides that it would be boring :) So your proposal can be a reality one day... I have no experience in building trading engines and right now I have dedicated all my spare time to it. You just wait :p
  18. J

    Visual Basic

    To get threading right in .NET is a major accomplishment... Think about locking, concurrency, persistence/ availability when breakdown, rollback etc. Very very hard to program. Of course things like : Thread thread = new Thread(new ThreadStart(oFoo.Calculate)) , is very very easy...
  19. J

    Visual Basic

    Hi gustavokeiff I developed code in Visual Basic back in 1998 and whenever we needed some async we did subclassing. It is however many years ago, that was the reason that I asked you, could be that you could tell me something about VB, no need to get rude or angry. Visual Basic is...
  20. J

    Visual Basic

    Who are you talking to? Please use attention or Quote :)
Back
Top