Best way to implement automated trading using java.

anji
I'm new to kite connect. I want to know which technologies are best suitable to implement the algo trading.
ex: The core functionality implementation which tools are best?. like spring or spring boot or any recommendation
which database is best to store the tick level data?.
it's better to store the tick level data in memory level or to retrieve from local db to make faster decisions?
how much data(MB) will come from websocket (from websocket we will receive live data so data from 9:00AM to 3:30PM) for each ticker?
Which combination is best to implement ? Core+Spring(Springboot)+JPA+ any recommendataion


Tagged:
  • sujith
    sujith edited December 2020
    It depends on your use case, if it is a contained app which just does some calculation and place orders then a simple core java app would do. But it is better to go with whatever you are comfortable with.
    You can check out this discussion for storing tick and accessing candle data.

    You can expect one tick per second for a highly liquid instrument. You can know more about frequency here.

  • anji
    Thanks @sujith for your quick response.
    I will go through your provided link and come to you any doubts arise.
    once again thanks for your valuable support.
Sign In or Register to comment.