Search results

  1. R

    Realtime Data feed for Implied volatility

    Could be true. My trading system uses C++ websockets over http; thats how I access the settings and configuration knobs from a remote broswer. I like websockets per se, but am only concerned about the message overhead they add. Yes, the only way one gets to know is to try things out and measure...
  2. R

    Realtime Data feed for Implied volatility

    This is very helpful.... thanks.... but curious... I have been seeing data feed offerings with websockets these days... how efficient is a websocket channel for realtime feed? How does it compare with sometime like UDP in terms of latency?
  3. R

    Realtime Data feed for Implied volatility

    Hi @thecoder , My apologies; I am a newbie in options, learning things as I go and so these novice questions; please bear with me :) I need IVol data for a strategy that I am working on. Ideally, I would like to live stream IVol data from a source such as IVolatility.com into my trading...
  4. R

    Realtime Data feed for Implied volatility

    I would like to start with say 5 instruments and add more as time goes on. I use my system to trade futures. I am looking at the possibility of using ivol (QQQ, GLD, SPY etc) to trade both the underlying etfs as well as the corresponding futures if they exist. I currently get my futures data...
  5. R

    Realtime Data feed for Implied volatility

    Hi, I am working on a strategy that requires IVol (7-30 days) as the input along with other features. Are there any data feed vendors that can stream IVol data in realtime with the following requirements: 1. C api only so that I can directly integrate it into my trading system...
  6. R

    How do you value vol?

    Nice Info; curious... how would one incorporate IV strategies in an trading system: 1. Get OPRA data feed from NxCore (Nanex) or the exchange 2. Compute ivol ATM and other variables realtime 3. Design trading strategies around ivol depending on the timeframe Curious about the tools/data feed...
  7. R

    Rithmic API for Python

    The C++ RAPI uses ssl. I have been using it for years.
  8. R

    Rithmic API for Python

    1. I have played with HTTP, Websocket & Rest from native C++ apps; they are too heavy for the type of work you have in mind. You can use them to have some of http interface to toggle a few trading config flags or for something like "exit the market now", but you don't want to use them for the...
  9. R

    Rithmic API for Python

    aah embedded python... how did I miss that. Thanks for the pointer. If I may ask, do you use boost or pybind11 for this? I am assuming that one should be able to import sklearn modules and pass numpy or csv arrays to fire off the inferencing engines? >> Using std::chrono::system_clock my c++...
  10. R

    Rithmic API for Python

    @IAS_LLC curious about what you are seeing? What kind of latency are you seeing with python analytics engine? I am running a python analytic engine in parallel to my c++ trading system (Rapi based) to generate trading decisions. Everytime my C++ app observes certain conditions, it issues a http...
  11. R

    prove why neural network will not work in trading

    Curious; as I understand (correct me), matlab coder provides a way to convert DNNs into cuda C++ code; that you can later compile & link into your trade signal generator. Doesn't that solve the latency requirement if you are trading within the 500us - 1ms range? Yes, under 10us is a different...
  12. R

    Newbie question

    my 2 cents: 1. Learn how to trade manually on one instrument... I prefer 24x7 futures or forex.... but equities should be equally fine; Focus on education and do not hesitate to spend money if necessary... the money you pay for education is peanuts compared to potential losses if you don't know...
  13. R

    Security setup for a Dedicated (trading) system at a datacenter

    Thanks for the suggestion, this is helpful. I don't have experience with setting up enterprise firewalls; how hard is it to setup a site-to-site tunnel? need to research this... but yes, this is definitely the right direction.
  14. R

    Security setup for a Dedicated (trading) system at a datacenter

    No, this is https://www.steadfast.net/ ... they have some nice options: https://www.steadfast.net/managed-hosting/bare-metal-dedicated-servers
  15. R

    Security setup for a Dedicated (trading) system at a datacenter

    Hi everyone, I have been running a trading system from home for sometime. Due to the power/network outage issues, I want to move it to a datacenter. I have talked to the sales rep of a premier data center near CME with regards to a dedicated system. He gave me multiple options and I can’t...
  16. R

    please recommend a VPS that is closest to IB server in Chicago

    Why is www.chicagovps.net so cheap? Are they legit.. I called rackspace the other day and they gave me a quote that is about 10 times this price (off course its more cores & memory). If I want to run a Linux based system, what kind of access would then give me. I don't want ports 80 or 443...
  17. R

    Dev Time for a FIX based OMS

    Just curious; how long/complex is the certification process.
  18. R

    Dev Time for a FIX based OMS

    This is helpful. I have structured my current OMS this way and so based on what you are saying we can abstract out the broker specific apis from our general OMS functionality... if we can do so with TWS and FIX, one can have an OMS one for each with common reusable oms functionality. this is a...
  19. R

    Dev Time for a FIX based OMS

    Yes, its for portability.... @2rosy, yes I am a developer. TWS api seems to be fairly straight forward, even a novice can come up something in an hour or two but FIX seems to be a little more involved (I have not yet tried to study it). I would like to compare TWS and IB FIX before I start...
  20. R

    Dev Time for a FIX based OMS

    I want to develop a simple OMS application that can manage orders and positions through FIX protocol (ignoring the strategy engine); just wondering; how much time would it take to develop a basic order management system that can connect to IB Gateway and manage orders (overnight/weekends)? The...
Back
Top