Recent content by januson

  1. J

    data comparison

    I love these contributions to the community :D
  2. J

    Peter Schiff speaking his mind on BUBBLE ben bernanke!

    Why on earth did CNBC use an employee from J. P. Morgan? J.P Morgan is one of the banksters in FED. How stupid do they think we are :D
  3. J

    What are the most professional automated trading platforms ?

    I have never seen a professional trading platform and doubt it that such exists for the public. All those mentioned in this thread are just for playing where 99% will blow up your account, the rest 1% will probably work somewhat profitable most of the time in a semi-automatic manner.
  4. J

    Custom Trading Platform

    It depends a lot on the developer, for me with 15 years of experience I would always develop my own trading software. I've tried 6-7 different platforms and each one had it's own oddities. But for a beginner that totally underestimate such a big project and don't understand the basic design...
  5. J

    Custom Trading Platform

    Hi amazingIndustry I'm in the process of building my own trading application as well, I've developed a lot of different small applications exactly as you did, but unfortunately my work has stalled the last couple of month :(... I just don't feel for it at the moment, but I can feel my mojo is...
  6. J

    Has anybody ever had a consistently profitable algorithm automated?

    NO!!! Please stop this thread immediately.
  7. J

    A question about designing a medium frequency system, 10k trades per day

    No doubt that it is an interesting journey you just have started. It can seem a bit strange that the vast majority of people tries to tell you that everything is very complicated, but maybe they are protecting their own interests :) One thing I always have wondered about is all the...
  8. J

    Tick Database, Now Want to Run SQL

    Easy SELECT min(price), max(price), datepart(second,time)%10 from TickTable group by datepart(second,time)%10 But I doubt that is going to make you happy :) Do the division yourself.
  9. J

    A question about designing a medium frequency system, 10k trades per day

    First of all, it's kinda funny to read this thread, the majority of comments are focusing negatively on the process... "you can't", "the robots are coming", etc. etc. Anyway... being unable to answer your diffuse posting I have one comment though :) Look into C# 4.0/ 5.0 instead of Java...
  10. J

    Economics of FIAT printing presses gone wild.

    Interesting thread, but I don't think that it will have such a great impact in our daily life. Take for instance those people who have bought expensive real estates, these will be the biggest winners as the inflation goes berserk. Thoughts?
  11. J

    Interesting results in new markets

    What? Who are you, what's your agenda? :confused: You are wrong in every single aspect, a strategy is highly adapted to a specific market nature. If you were going to have a strategy work for multiple markets you would do exactly as all other noobs that think optimization is required to...
  12. J

    Price Pattern programming for Multicharts

    Have you tried TSSUPPORT? or mabe Traders Laboratory?
  13. J

    Tick Database Implementations

    What are you going to read? Ticks between start date and end date og aggregated data? Explain a bit about the nature of your queries :)
  14. J

    Tick Database Implementations

    I can assure you that RavenDb is terrible slow when comparing it to a normal RDBMS and that is caused by the nature of ticks. I have experimented with MongoDb which is amazingly faster than RavenDb both in read and write. MongoDb is 10Xfaster than RDBMS for write and almost the same speed in...
  15. J

    c++ ohlc structs and ta-lib

    Hi... I've created a class for this: public interface IBarData { IList<Common.Entities.ITickData> TickData { get; set; } int BarNumber { get; set; } DateTime? BarStartTime { get; set; } double Close { get; set; } double High { get; set; }...
Back
Top