Hi, just to confirm what I've read here
Accessing daily eod data in 1 min chart
I have a synthetic ticker containing shares outstanding as a EOD series:
And I want to use this data for my intraday setups. But it looks that Amibroker just tries to compact intraday data and ignores the EOD data in the database:
shares_out_symbol = Name() + "_" + "SHARES_OUT";
SetForeign(shares_out_symbol);
TimeFrameSet(inDaily);
shares_outstanding_daily = V;
TimeFrameRestore();
shares_outstanding_expanded = TimeFrameExpand(shares_outstanding_daily, inDaily);
Filter = 1;
AddTextColumn(shares_out_symbol, "shares_out_symbol");
AddColumn(shares_outstanding_expanded, "shares_outstanding");
And the shares outstanding is not retrieved from the EOD data, a funny number shows, guess compressed from some inexistent number...
So, my question is
Is there a way of accessing EOD data from intraday analysis?
I guess the only solution is to create the synthetic tickers as intraday series with the same interval as regular tickers, correct? This will make the DB grow quite a bit...
Thanks