PureBytes Links
Trading Reference Links
|
Hi Kaveman,
The code below ran succesfully on EOD chart .But the same did not
gave any signal on Intraday chart, when i run it in auto-analysis.
When I loaded the opening Intra-Day data(5min) just 2min after
market opened I expected a sell signal as the open was above yday
high, but it did not.ON the contrary it gave me sell signal when i
run it over EOD at the days end.Any suggestions pls.
Regards
--- In amibroker@xxxxxxxxxxxxxxx, "iascool" <sai20_2000@xxxx> wrote:
>
> Thanks Kaveman
> I really appreciate your changes in code have worked instantly on
> daily charts.
> I have a bit problem on intraday charts , I have imported @ 50
> scrips intraday in AB. But
> 1)The scrip names have a specific daily code in front of them for
eg
> on 28 oct 2004 the scrip will be XXXEQ10142 and the same scrip on
> 29 Oct 2004 the scrip will be XXXEQ10382 .When I import it in
AB
> the scrip donot overwrite(/append) to itself but forms a saperate
> entity.I have gone thru help file to find that "alias" function
does
> manages to merge data which have slightly diff scrip codes of same
> scrips but from diff data locations. I prefer the intraday data
> should form series od data in same scrip rather than different one.
> Any Suggestions pls
>
> --- In amibroker@xxxxxxxxxxxxxxx, kaveman perth
<kavemanperth@xxxx>
> wrote:
> > try this
> > Buy= cross(TimeFrameGetPrice( "L", inDaily, -1 ),O);
> > sell=cross(O, TimeFrameGetPrice( "H", inDaily, -1 ));
> >
> >
> > On Mon, 01 Nov 2004 09:24:06 -0000, iascool <sai20_2000@xxxx>
> wrote:
> > >
> > >
> > > hi
> > > I update AB intraday manually thru excel.
> > > I intend to find the stocks at the opening bell ,which
> > > 1)Open above previos days high and ( Action-Short)
> > > 2)Open below previos days low (Action-Long)
> > > Following is the code i have tried to write but unaware how to
> write
> > > it in intraday format
> > >
> > > TimeFrameSet(in5Minute);
> > > Buy= Open<LLV(L,-1);
> > > Sell=Open>HHV(H,-1);
> > > TimeFrameRestore();
> > > AlertIf(Buy,"sound c:\Media\Notify.WAV","Audio alert",1);
> > > AlertIf(Sell,"sound C:\Media Notify.WAV","Audio alert",2);
> > >
> > > At present iam not getting any signals , can any one correct
and
> > > advise me pls.
> > >
> > > Regards
> > >
> > >
> > > Check AmiBroker web page at:
> > > http://www.amibroker.com/
> > >
> > > Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> > > Yahoo! Groups Links
> > >
> > >
> > >
> > >
> > >
> >
> >
> > --
> > Cheers
> > Graham
> > http://e-wire.net.au/~eb_kavan/
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|