Recent content by wackytacky

  1. W

    Live Streaming Historical Data

    Any tutorials you would like to suggest that are particularly for 'building automated trading systems in python'
  2. W

    Live Streaming Historical Data

    import csv from kiteconnect import WebSocket api=' ' public=' ' userid=' ' kws=WebSocket(api,public,userid) def on_tick(tick,ws): crudeoilm = open('crudeoilm.csv', 'a') crudeoilWriter = csv.writer(crudeoilm) crudeoilWriter.writerow([tick]) def on_connect(ws)...
  3. W

    Live Streaming Historical Data

    Offcourse it is my responsibility to review source code before going live.
  4. W

    Live Streaming Historical Data

    Okay. So you meant is I use some kind of scheduler that runs at the end of time interval and it appends the new data to an already existing data? secondly, Where do I store this data? Memory or some database?
  5. W

    Live Streaming Historical Data

    But how to go about building the OHLC? I mean The data that we receive from Broker end which is live and streaming, how shall we take it and where? Can you help me the code plz?
  6. W

    Live Streaming Historical Data

    Real-Time Data Feed from a broker would give Tick Data and not OHLC Apart from I converting TD to OHLC, is there any other way?
  7. W

    Live Streaming Historical Data

    I mean ya. You are right. So where do I get the current 5 min interval?
  8. W

    Live Streaming Historical Data

    Live Streaming, I doubt. quantopian.com
  9. W

    Live Streaming Historical Data

    I have a small confusion- Please help me on this as I m little new to Automating trading I cant understand one thing - When i call historical data (be it of any interval), I get the data till that particular time. Suppose I assign it to a variable [spy= spy-OHLC for 5 min interval] and when I...
  10. W

    Heiken Ashi Chart Confusion

    Any indicators or oscillators or any combination of them with chart types do you suggest to put into algo trading that I can backtest?
  11. W

    Heiken Ashi Chart Confusion

    Ah!!... Got it... Ya... So basically if i write a logic that if HA_Close> say MA(5): Buy @ current market price (Which can be totally different from the HA_Close...) "You need to overlay an actual OHLC price series on top of the HA price series to track the actual price."- You mean this...
  12. W

    Heiken Ashi Chart Confusion

    Why would backtesting become complicated.. If we have defined a function of HA and we run any indicator on top its OHLC. Where will be the problem? I havent done backtesting before so I really dont know what will I face if I do so.. Can you throw some light on it please?
  13. W

    Heiken Ashi Chart Confusion

    Hi all, I have a small doubt. Whenever we change Chart type to Heiken Ashi, the values of all Indicators changes completely. For instance the value of a particularity day in daily chart on any indicator will be different for candlestick chart than Heiken Ashi chart. The Doubt is The...
Back
Top