Search results

  1. X

    Is there a to-go design of algo-trading system?

    I think this is the bone/skeleton I want after. But this is very abstract concept. Is there more detail/actual approach to implement such architecture? Thanks!
  2. X

    Is there a to-go design of algo-trading system?

    Thanks for the tips: Here is my more rudimentary questions given there is a lot of stuffs there, I feel a lot concept maybe very basic in app/system development but still very foreign to me. 1. what is event driven concept, what's the best way to construct process around event driven and how to...
  3. X

    Python - Project with well-written code - Example for study?

    Thanks jharmon, I'm trying to build a fully automated trading system based on Python and have tested different pieces like ib_insync, I'm not from a programming background, so the design of the system seems a bit difficult for me, such as which part a essential of a system and what's the role of...
  4. X

    Python - Project with well-written code - Example for study?

    This type of discussion is really helpful. Can anyone to more extensive discussion of similar topic in this forum?
  5. X

    Is there a to-go design of algo-trading system?

    I want to know details about how a order is placed and position is managed and data is flowed through in a fully automated algorithm Is there any good github project like this?
  6. X

    Is there a to-go design of algo-trading system?

    I mean not from strategy perspective, but from program design/operating perspective. I just start on this route, but very uncertain about what is a good practice. By googling I get some information similar as picture below. Hope someone can help.
  7. X

    Why the bracket order showing price incorrectly

    I placed order as below, and the price seems alright, but when I check the order submitted in ib, it showing the price is quite different for the limited order. Can anyone help me why? ----code-------------------------------- contract = Future('ES','202009', 'GLOBEX') bracket =...
  8. X

    Data not loading at all

    Yes, I contact help desk and upgrading TWS Gateway solves the issue. Thanks
  9. X

    Data not loading at all

    I have been having this problem in the past 2 weeks, that the connection is established and is able to qualify the contract, but no ticker data is feeding to get the price information at all. I've tried using TWS or API, neither of them will work. Can anyone help me with issue?
  10. X

    Who/Why trade options at such extreme value.

    I don’t think it’s expensive or cheap, I don’t even think about thinking its expensive or cheap. Just trying to understand why its fair trade for both side.
  11. X

    Who/Why trade options at such extreme value.

    Thanks for the details, seems it’s always a fairways on the spot, and always not the case their after. I think the environment is just changing rapidly, or one side of the trade is significantly wrong about something.
  12. X

    Who/Why trade options at such extreme value.

    I check the historical high if a UAL put option price, just wondering who would trade at such extreme prices. Is it purely speculators on both side just trying to gamble, or it is some one really trying to hedge/cover their positions. What’s the rationale could their be? Or its just not...
  13. X

    How to manage orders

    Just did some research, in the context of IB platform, I think what I want is bracket order implementation, like below. https://interactivebrokers.github.io/tws-api/bracket_order.html
  14. X

    How to manage orders

    Yes, this is what I want (either a market order or limit order I think), my exact question is how usually this is implemented or code up, do I just do following: if price>xxxx or price<xxxx then sell at market order Is there going to be any problem if doing this way?
  15. X

    How to manage orders

    Thanks for the advise. If I have a position that I want to close it whenever the price is above or below a threshold, is there any specific way to set up the order so the execution will be robust and easy to understand. I’m thinking of some if else condition and then set up orders, but I can...
  16. X

    How to manage orders

    Im looking for some existing ways in a automated system how usually and order is generated being tracked and once a position is filled, how it is being monitored for exiting. Just start to explore this aspects, so any thoughts or reference is appreciated. So far it seems to me I need to right a...
  17. X

    Warren Buffett's Berkshire Hathaway slashed its Goldman Sachs stake by 84% last quarter

    The trouble is he is not the only few who have a lot of cash in hand like in 2008 and this time is also not a financial crisis. This round is about sustainable earnings and changes. I expect the more stock market bounces in short run, the harder the recession gonna hit us since there is...
  18. X

    Profitable Traders: What makes you keep going?

    As a retail trader, you do contribute to the society a lot by provide liquidity to the financial market. That's the number one industry of US and yet you take the risk and get paid for it.
  19. X

    What is the best tool(s) to analyze data progammatically?

    what I mean the analytic thought flow. If your analysis is just take 10 steps in sequential order, and running stats package I think R is sufficient and quick. Lets say if your analytics becoming ver complex and you want to make them your own tool box or even a package, I think R is kinda...
  20. X

    What is the best tool(s) to analyze data progammatically?

    R is quick, easy and powerful in terms of pure statistical analysis, but the thought process is pretty linear. Python is a safe bet if your analytic tool tend to grow into a system and being complicated.
Back
Top