Order Types, Responses & Rejections // Algo Trading Platform (Trading Engine) Series

Поделиться
HTML-код
  • Опубликовано: 3 окт 2024

Комментарии • 41

  • @ayyylmaoimbad3871
    @ayyylmaoimbad3871 3 года назад +4

    Thank you 🙏🏽. This series is a blessing!

  • @hooregi4500
    @hooregi4500 3 года назад +1

    These might not have a lot of views, but I really appreciate these videos. Thanks for passing down this knowledge.

    • @CodingJesus
      @CodingJesus  3 года назад +10

      These videos will be view generators in the long run. I’m not worried. People will still be watching this in 10 years.

    • @babegh4991
      @babegh4991 3 года назад

      @@CodingJesus I want a generator…

  • @kanchanbhatia3930
    @kanchanbhatia3930 Год назад

    Amazing..that is something i was looking for so long.

  • @zoasis7805
    @zoasis7805 3 года назад +1

    Looking forward to seeing the rest. Thanks cj

  • @HimanshuGhadigaonkar
    @HimanshuGhadigaonkar 3 года назад

    This is gold! Thanks for your efforts.. and recording again

  • @dsadsadsadsadsa177
    @dsadsadsadsadsa177 3 года назад

    This series is god tier bro, thank you so much

  • @paypalservices2724
    @paypalservices2724 3 года назад +1

    Like im super curious, what actual strategies do you use? Backtest what? Breakouts? What is it you actually do? Find undervalued companies? Find option prices that may be undervalued/overvalued? What is it you truly do? I really want to know

    • @ar-4775
      @ar-4775 3 года назад

      That's the black box

  • @nozimmehrubonov8818
    @nozimmehrubonov8818 2 года назад

    Thanks, invaluable video!

  • @Hjgd-d5o
    @Hjgd-d5o 2 года назад

    Please continue the series

  • @aravindtiwari9702
    @aravindtiwari9702 3 года назад

    Awesome content.. 👍
    I am new to this.. would love to learn it in much detail.. 😁✨
    Pls make more of such videos.. 🔸🙏

  • @IK-ow2zk
    @IK-ow2zk 3 года назад

    Thanks a lot!

  • @moazim1993
    @moazim1993 2 года назад

    Hey Man, I work as a Kdb Data Engineer in an Investment bank in equities. I support the quants and execution algos. Any books/blogs/RUclips channels you recommend to learn market micro structure, and the technical finance concepts relevant to your role?

  • @ar-4775
    @ar-4775 3 года назад

    Sorry if this isn't the right place to ask, but will you cover feature engineering in the future?

  • @bumdass7761
    @bumdass7761 3 года назад

    The equivalent consideration to the underflow could be made for an overflow inside the IncreaseQuantity method.

    • @CodingJesus
      @CodingJesus  3 года назад +2

      Yes this is correct, but I doubt someone will send an order for 4 billion units of something. As EDEN builds, we'll have maximum quantity levels and reject these orders.

  • @chillbeach7322
    @chillbeach7322 3 года назад

    Wise one, I have a question for the. Have you heard about the "algo since 2012" GME theory? Is it possible that an algo is not updated since 2012? Please enlighten us.

  • @e.sanoop110
    @e.sanoop110 2 года назад

    Hi Coding Jesus. Big Devotee of you. Top urgent query, what type of orders do the Smart money execute while doing Credit Spreads. Since they always trade with very high volume/quantity, do they always use Basket orders? Or do they only use limit orders separately and never market orders? Retailers like me always execute my Basket order at Market price. Does the Smart money do the same thing?

  • @bennya2846
    @bennya2846 3 года назад

    Hang on a sec!!! Are u the real Jesus????

  • @daltontsima1900
    @daltontsima1900 2 года назад

    so this means you wont need an exucution services from firms like currenex nad cboe once you have your own platform?

  • @patryknextdoor
    @patryknextdoor 3 года назад

    how do you see Jim Simons and The renesiance trading methdology ? is there any hidden information out there what parts of ML and statisctis they might use ? or if not what would you suggest works in the forex market

  • @melouadi79
    @melouadi79 Год назад

    Code is not still available at Github. does anyone have a copy or a fork of the initial repo ?

  • @midoalpha9667
    @midoalpha9667 3 года назад

    Hi Coding jesus !
    Do you recommend the book of Derivatives analytics with python by Yves HILPISCH ?
    All love man😃

  • @gavwolf123
    @gavwolf123 3 года назад +1

    What programming language are you using?

  • @jiaweixue6396
    @jiaweixue6396 Год назад

    OOP design for Order book..

  • @bennya2846
    @bennya2846 3 года назад

    Do,,,u r not Jesus…..because I am!!!!

  • @ownagejuice1394
    @ownagejuice1394 2 года назад

    is your channel dead?

  • @bennya2846
    @bennya2846 3 года назад

    Are u the son of God????

  • @bennya2846
    @bennya2846 3 года назад

    How dare u disrespect god chump.

  • @bennya2846
    @bennya2846 3 года назад

    I’m a coder bro,,,,u don’t know what ur doing….

  • @sixsoxsex1
    @sixsoxsex1 3 года назад

    Is C sharp better than Python for programming trading engines or quantitative analysis? And what about Tradestation and its easy language?

    • @sixsoxsex1
      @sixsoxsex1 3 года назад

      @Coding Jesus••▫️▫️ Sorry I'd like to learn the correct programming language

    • @adityakarve6808
      @adityakarve6808 2 года назад

      Should not make as much of a difference. While python is 'slower', most of the heavy, calculation intensive parts of your code will be taken care of by c++ libraries with a python wrapper. So python can be as fast as anything else out there.
      Only trouble with python is it's an interpreted language, errors might pop up that during execution that would otherwise be rectified immediately in a cpp or c#.
      cpp is the norm in the industry though.