Search results

  1. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Open files in that folder and see what is there. Post it there. Temp folder is the one that you have given to RTD_1.5
  2. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Check what you have in temporary folder.
  3. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Open RTD1.format and rtd2.format files located in your\Amibroker\Format folder - in notepad. Add this line below and save. $TIMESHIFT -0.01666667
  4. josh1

    Another Bhavcopy Downloader (ABCD)

    My ABCD is working without any issues.
  5. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    No solution for that yet. Do link to excel and see what you get in excel
  6. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Right click in MW and open Dialog bar -- Index value bar
  7. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Yes. Ensure that Scrip number is unique and there are no gaps.
  8. josh1

    Simple Coding Help - No Promise.

    You have to open Nest Trader, Ami and RTD_1.5 all in Administrator mode first time. This is not the thread to ask this question.
  9. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Subroto Scrip1=Nifty 50;Nifty 50;Index Value;; Keep this line as first scrip. Similar lines can be added for other indexes. You can add them thru RTD 1.5 also. Keep index value bar open. Add indexes. Click on Index radio button in RTD1.5 -- Select indexes and click on Start. You have to keep...
  10. josh1

    Simple Coding Help - No Promise.

    Yes it works, but the crooked line is actually from previous day EOD till the last bar of the initial range. and we need only this much code-
  11. josh1

    Simple Coding Help - No Promise.

    Replace them with RGH and RGL. Also replace RGClrs with color of your choice. Thanks
  12. josh1

    Simple Coding Help - No Promise.

    Tried that. It si not working
  13. josh1

    Simple Coding Help - No Promise.

    This AFL gives me Initial Range High Low and also a crooked line at the EOD. I want to remove that Crooked line. _SECTION_BEGIN("Initial Range HI-LO"); IRHL = ParamToggle("InitialRange HI LO","Show|Hide",1); DayC = TimeFrameGetPrice("C", inDaily, -1); DayCI = LastValue (DayC,1); //...
  14. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    22 days is not a problem for Data Table. It is problem for VWAP Table.
  15. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Don't delete. Link the cells of Market watch in RTTiger.xlsm. Open RTG3 format file and change $Format line. Change Date_DMY to Date_MDY
  16. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Amibroker Quotation structure contains only Date O H L C V OI. There is no place for Bid-Ask rates and Qty. Those fields are accomodated in ACCe. Backfill from Google should be done in ACC. Historical Bid-Ask rates are not available anywhere.
  17. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Your data should be in this FORMAT -- Date_DMY, Ticker, Time, Close, Volume, OpenInt, Skip 01-12-2017, 0, 10:41:43, 0, 0, 0 , 0, DATE, TIME, OPEN, HIGH, LOW, CLOSE, QUANTITY ,AVERAGE Compare what you are feeding
  18. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    Standard VWAP table contains data for current day only. RTD program is assuming that. In your case, it has data from 30th October. Therefore you got screwed. You better use Nest table for backfill.
  19. josh1

    Real Time Data Now / Nest Trader to Amibroker, Fcharts

    You have to select VWAP for backfill