PureBytes Links
Trading Reference Links
|
I'm a newbie of Amibroker. I use AA window to view the scanned
results. However, I notice that in the AA window, there's only
the "Date" option but no "Date/Time" option. But in Explore window,
there's the "Date/Time" option. I hope all symbols scanned by
intraday timeframe can be sorted according to their HH:MM:SS of
entrytime.
For instance, when I scanned 30 stocks, on the 5-min chart, when 10-
& 20-EMA crossover, an alert signal was given. Below is the program
I've written using AFL:
Cond = Cross(EMA(Close, 10), EMA(Close, 20) );
Cond1 = Cross(EMA(Close, 20), EMA(Close, 10) );
Buy = Cond;
Sell = Cond1;
I use the AA window to do the scan every 1 minute, so at least 100
alert signals would appear each day. If I sort them according to
HH:MM:SS, the newest signal (it could be the same symbol or different
symbols) is on the top or at the very bottom, so I can easily see
them. But if these signals are sorted according to "Ticker,"
"Trade," or "Close," then I need to FIND the new-coming signal
through hard work.
I want to make sure that if one can sort by HH:MM:SS in Amibroker.
Any help appreciated.
Robert
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|