PureBytes Links
Trading Reference Links
|
hi iascool,
what is your background colour of your chart? If it is white you might try to use black. Because all the the arrows are either white or yellow.
Time is of importance in the line:
timebar = Cross(TimeNum(),155900);
155900 stands for US time, 1 minute before the close. This you should adapt for your local closing time. But even if you use a wrong time you should be able to see some arrows.
you could also try if
timebar = Ref(HBOP,1) - HBOP != 0;
works. This is good for backtesting but will not give a signal in realtime at the close. So for realtime trading you need to use timebar = Cross(TimeNum(),155900); and adjust the time to 1 minute before the close.
rgds, Ed
----- Original Message -----
From: iascool
To: amibroker@xxxxxxxxxxxxxxx
Sent: Monday, November 15, 2004 6:44 AM
Subject: [amibroker] Re: reaction trend system posted in AFL Library
Hi ED
I have plotted this system on my hourly charts but it only gives me
four lines something like S1 B1 SBOP etc. BUt it donot plot ant
arrows or triagles .Iam using Indian Stock data.Where amI blocked?
Pls advise
Regards
--- In amibroker@xxxxxxxxxxxxxxx, "ed nl" <ed2000nl@xxxx> wrote:
> no suree, it is intended for intraday data. Best to use with
violently volatile and heavily traded stocks like AMZN.
>
> Also of importance is the line:
>
> timebar = Cross(TimeNum(), 155500);
>
> this should be replaced with
>
> timebar = Cross(TimeNum(), 155900);
>
> then you either use timeframes 5 minutes, 15 minutes or 1 hour.
>
> Note that 155900 assumes you trade on the Nasdaq or other US
markets. It is 1-minute before their close time. So if your intraday
data uses local time you need to change "155900" to the local time,
1 minute before your market closes. Some positions close at the end
of the trading day and if you want to use the system to trade in
real-time you will be told 1 minute before the close if you need to
close the position.
>
> rgds, Ed
> ----- Original Message -----
> From: suree namsiripongpan
> To: amibroker@xxxxxxxxxxxxxxx ; ed2000nl@xxxx
> Sent: Saturday, November 13, 2004 5:41 PM
> Subject: [amibroker] reaction trend system posted in AFL Library
>
>
>
> Dear Ed,
>
> i just found your code inAFL library about reaction
> trend system. it is quite a long code. my question is
> , can i use with EOD data ?
>
>
>
> __________________________________
> Do you Yahoo!?
> Check out the new Yahoo! Front Page.
> www.yahoo.com
>
>
>
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
>
> -------------------------------------------------------------------
-----------
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms
of Service.
>
>
>
> [Non-text portions of this message have been removed]
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Sponsor
Get unlimited calls to
U.S./Canada
------------------------------------------------------------------------------
Yahoo! Groups Links
a.. To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
b.. To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/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/
|