PureBytes Links
Trading Reference Links
|
You can set the watchlist in the filter settings from within the
Automatic Analysis window. Likewise you can set the scan interval
(that setting is just below the filter settings) to 15 (mins).
YesterdaysHigh = TimeFrameGetPrice( "High", inDaily, -1 );
TodaysHigh = TimeFrameGetPrice( "High", inDaily );
Filter = TodaysHigh > YesterdaysHigh;
AddColumn( C, "Close" );
AddColumn( YesterdaysHigh, "Yesterdays High " );
AddColumn( TodaysHigh, "Todays High " );
Regards,
William Peters
http://www.amitools.com
Monday, October 10, 2005, 3:54:31 AM, you wrote:
j> I'd like to write a realtime scan that would look at a watchlist and
j> give me a list of all the symbols that are or have already broken the
j> previous days High. I'm a little confused about this because I'd be
j> mixing daily bars(yesterday's High) with an intraday look (I'd like to
j> run this scan during market hours, probably at 6:45am PST, 7:00am PST,
j> 7:15am PST and so on)). Could someone show me how this is done?
j> Thanks, John
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/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/
|