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...
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); //...
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.
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
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.