PureBytes Links
Trading Reference Links
|
Larry,
All of this timeframe "stuff" works in one direction: data pulled
from higher timeframes down to lower timeframes. You cannot go in
the opposite direction.
If you have a 1-minute chart, then it's no problem to get daily info
and plot it on that 1-minute chart. But I'm pretty sure it's a no go
to be in a daily chart and then try to pull in minute-based data onto
that daily chart (at least not through the time-based functions).
Note: this is an Amibroker implementation issue. For example, in
eSignal, it's no problem to be in a daily chart and then have the
script behind the chart pull in minute-based data for the same or
different symbol.
--- In amibroker@xxxxxxxxxxxxxxx, "onelkm" <LKMCD1@xxx> wrote:
>
> I am trying to pivot from todays price at 9:35 instead of at the
9:30
> open which is too volitile. I then want to plot the pivot price on
a
> daily chart. This is what I have so far, but something doesn't
work.
> The price at 9:35 is empty on the daily chart. Should be easy, but
I've
> spent hours looking at posts and help files. Could someone give me
some
> help?
>
> Thanks
> Larry
>
> TimeFrameSet(in1Minute);
> price935=ValueWhen(TimeNum()==093500 ,C,1); // price at 9:35 .....
does
> not work!
> TimeFrameRestore();
>
> price935xx = TimeFrameExpand(price935,in1Minute,expandFirst);
> Plot( TimeFrameExpand
>
(price935,in1Minute,expandFirst),"price935",colorYellow,styleStaircase
);
>
> TimeFrameSet(inDaily);
> Plot(C,"C",colorWhite,styleBar);
> buy = cross(H,price935xx*1.01);
> sell = cross(price935xx*.99,L);
> TimeFrameRestore();
>
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/
|