Search results

  1. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @Boarders I find some merit in your calculation of Ask Bid volume. However, in this case I do not see any necessity to store Bid|Ask volumes in Aux1 and Aux2 since ... if LTP equals ask price then LTQ equals ask vol (avol) - passed to aux1 if LTP equals Bid price then LTQ equals bid vol (bvol) -...
  2. josh1

    Trade Tiger to Excel to AmiBroker, Fhcarts

    I never tested more than 60 symbols. I really don't know the upper limits. I don't use any of the two apps now and never used trade tiger.
  3. josh1

    Trade Tiger to Excel to AmiBroker, Fhcarts

    AB Versions below 5.5 are not able to refresh charts when data is updated. Open Developer options from Excel and then VBA. Open project. Thereafter open Module1. Find call Amibroker subroutine in it. It will look like this-- Sub CallAmiBroker() Call AB.Import(0, FileName...
  4. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    What is AB version? Ask your question in correct thread. I will reply there. That is this
  5. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Anybody installed NOW/NEST on same machine? I am asking because Nest plus cancels previous installation
  6. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @Boarders, Have you made any changes to source code after 25th March this
  7. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @Tracerbullet, I downloaded Github/Desktop. Nice GUI tool. I forked your project on Github and downloaded it on my Lappy, made changes, committed and synced. I can see changed code on Github now. So far so easy. Please help me with this .......... amibroker.obj : warning LNK4075...
  8. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @TB, Please explain this code of yours. /* Send OHLC to NinjaTrader Workaround - Send OHLC as ticks with 1/4 volume */ void Worker::pushToNT( const std::vector<ScripBar> & bars ){ int volume = 0 ; size_t size = bars.size(); const ScripBar *bar; for( size_t i=0 ...
  9. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Shift to NOW if you can. It is more stable and faster than Nest. I shifted two years back. TB shifted about a year ago. Though both products are from Omnesys, NOW is officially distributed by NSE through its subsidiary, Dotex International. Nest is distributed by Omnesys with some functional...
  10. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Don't worry even if they don't match, we are getting correct OHLC from NOW except sometimes for first candle of day.
  11. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Hi Boarders, You may get correct volumes in commodities. There are hardly 40000 contracts in crude from 10:00 AM to 11:30 PM that is 12:30 hours of Trading. That is 40000 contracts in 44280 seconds or 1 contract per second. Other commodities have even lesser contracts. I did not check...
  12. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Do not use LTQ until it is proven that RTD server is sending all ticks. I tried LTQ for one day. I did get almost similar chart but volume was drastically less (some times it was half of actual volume). TB's method of collecting data is on sample basis. If RTD server is also disbursing sample...
  13. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    That will be disastrous. Do you know that NOW/Nest does not do any other work while it is retrieving data/VWAP table from exchange? You may not be able to enter your trades while backfill is running? There is a chance of Nest Trader crashing also. Better to increase your network speed to...
  14. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @server2712 Same as post #1212
  15. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @Zoheb Uninstall Nest/Now, Amibroker, RTD. Install all in any other drive. If you have no other drive, install them in C:\trading Latest version of Nest/NOW are run as administrator by default. If you uncheck that property, you can run all as normal user
  16. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @Zoheb You have to start RTD_1.30 as administrator? Data table -- press Shift+D on any scrip Vwap -- save button is available You can add as many column as you want
  17. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    TB is right. Amibroker is very fast in importing ascii file. To feed Ami in tick format, first we have to see whether we are getting all ticks. Ami is importing data at 150 msecs with CrudeM. I have to check tomorrow with Nifty. We may not be able to feed tick data 1 tick at a time. We have to...
  18. josh1

    Another Bhavcopy Downloader (ABCD)

    Zoheb, Most of these were holidays for exchange. See here. Rest you can download again.
  19. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Currently, I am maintaining two arrays (Current and Previous ) of scrips read from settings.ini for storing and aggregating ticks . Both have a Push Flag in addition to data. Each new tick is first stored in Newdata structure. Flow is as below...
  20. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Why make it too complicated? Just add an "e" to alias. So 'Nifty_F1' will have original stuff and 'Nifty_F1e' will have B|A related stuff in whichever columns we want. Push data to csv in two simultaneous lines.(Minimum change of code) Edit- See, if you haven't already this