PureBytes Links
Trading Reference Links
|
Ken I am not quite positive what you mean, but if you want to set a
starting date you probably better use 21*inDaily since inMonthly
always begins with first day of the month and ends at the last day of
the month
Hope this helps,
Adrian
--- In amibroker@xxxxxxxxxxxxxxx, "Ken Close" <ken45140@xxx> wrote:
>
> Here is one I cannot figure out.
>
> I write
>
> Filter = 1; Buy =0;
> Bars = Cum(1);
> AddColumn(Bars,"Bars",1.0);
>
> I set the date to the first date of the data, and I get
> Bars
> 1
> 2
> 3
> 4
>
> Now, I set this
>
> Filter = 1; Buy =0;
> Bars = Cum(1);
>
> TimeFrameSet(inMonthly);
> BarsM = Cum(1);
> TimeFrameRestore;
> BarsM = TimeFrameExpand(BarsM,inMonthly);
>
> AddColumn(Bars,"Bars",1.0);
> AddColumn(BarsM,"BarsM",1.0);
>
> and I get
>
> Bars BarsM
> 1 4763
> 2 4763
> 3 4763
>
> I expected
> Bars BarsM
> 1 0
> 2 0
> etc
> 22 1
>
> What is going on? What happened inside the TimeFrameSet section?
Why did I
> get this result?
> I want to operate on Monthly stats and bars yet need to count the
number of
> months since a specified start date and I cannot do it.
> Help please.
>
> Ken
>
------------------------------------
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|