Search results

  1. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @Boarders, I suggested Open and Close both as LTP. However, we can have Close as LTP and use Open for something else. We can have two separate instances of RTDMan, both pulling data from NOW/Nest and both pushing it to the same instance of Amibroker. One pushing it as ticks (Nifty_T1) and...
  2. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Ohh........ I don't have that option in Intraday settings. My version is 5.5. :mad::mad: That came in 5.62
  3. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @Subroto I do not understand this -- And in Database settings - Intraday settings set Aux1,2 aggregation mode to "Last" and the other one to "Sum" I do not find aggregation mode in intraday settings
  4. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Ok. Let me make this simpler. What I am asking is .... 1. If we manage to get tick data ... and 2. If we get Ask|Bid, Ask|Bid Qty(size) at LTP .... and 3. We push each record to Amibroker like this Open = LTP, High = Ask Price, Low = Bid Price, Close = LTP, Volume = LTQ or Last Trade Qty...
  5. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    RTD 1.30 is for Amibroker. New RTDman is for Ninja. It is still under testing. Backfill not available for Ninja yet.
  6. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    That means, if we manage to get tick data and are willing to keep it as it is (without converting it into 1 sec or higher time frame bars) we can easily accommodate ask|bid rates and qty in Amibroker. Am I correct? I guess Happy Singh will be able to confirm this. He knows AFL better.
  7. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    My live and backfilled charts also match for almost all scrips. I tested for more than a month. I don't feel the need to backfill at EOD. As for authenticity of backfill data, Exchange is publishing the same figures at EOD.
  8. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    If we get tick data for Amibroker, and bid ask at LTP, ask can go into High and bid can go into Low. Ask size and bid size can go into aux1 and aux2 respectively. LTP can go into O and C How to handle them in AFL is to be seen
  9. josh1

    Another Bhavcopy Downloader (ABCD)

    @Zoheb What is there in log file?
  10. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Any users having Amibroker Professional Version? getrtdata and getrtdataforeign functions in professional version support Bid Ask price and size. Bid Ask is also available in esignal plugins. Are these being stored or just for sake of display in RTwindow? Users of professional edition please...
  11. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    No luck :o Edit- Got exe from Google drive
  12. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Both files are not available even after logging into microsoft. Sharing permissions?
  13. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @Zoheb Download RTD_1.30
  14. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    That is not proven yet. I used that logic for excel apps. I am looking forward to test RTDMan with LTQ. However, I have made invading changes to your code in worker.cpp for that purpose. If many transactions are not part of our tick updates, we would not get OHLC correct for most candles. I...
  15. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    How will you test it? Against which standard? How do you prove esignal is better than others? Backfill every 3 minutes? Backfill is not required unless there is network disruption. I have 8mbps connection. If I start RTDMan before 9:15 and there is no network disruption till EOD, I do not...
  16. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    TB, You are using my EOD downloader ABCD. Download futures data with headers. Do backfill from VWAP /Hourly Statistics for any futures scrips. Thereafter, open chart in Amibroker and press Ctrl+D to get daily charts. Check the futures volume with Amibroker. You will see that they match. (You...
  17. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Who says Level 1 is not tick based data. Read the difference in levels here The bold part above is correct. If you see pdf for level 1, you will see that Level 1 data provides only best bid and ask prices. No market depth. Difference amongst levels is regarding market depth in the form of bid...
  18. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    That is a myth. Nobody gives level 1 data. I have tested backfill umpteen times. There is hardly any difference. I have doubts about Nest since its feed is redirected through broker's server which are co-located with NSE servers. However, data is same. There is some latency in Nest since data...
  19. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    @Snake.head I browsed through TB's code. I did not see any timestamp being sent to NT. It is only OHLCV. That means NT is taking time from system.
  20. josh1

    Simple Coding Help - No Promise.

    @SR114 Your AFL does not plot PDH PDL for earlier days. After removing Today == Day () formula, it did plot but it would plot weird vertical lines at EOD. Thereafter, I replaced formulas in Essential Trader Tools AFL with yours. I am getting very good results. Here it is --...