PureBytes Links
Trading Reference Links
|
Lloyd
try this:
You need to be in a lower timeframe than 15 minutes to use the
Timeframeexpand.
So in five minutes chart see if this does the trick:
// set chart interval to less than 15 minute
TimeFrameSet(in15Minute);
ST_15 = StochD(14) ;
TimeFrameRestore();
ST = TimeFrameExpand(ST_15,in15Minute);
Condition5 = ST < 20;
Condition15 = ST_15 < 20;
Plot(ST,"", colorRed);
Plot(ST_15,"", colorBlue);
Filter = 1;
AddColumn(ST,"stoch 5min");
AddColumn(Condition5,"Cond 5");
AddColumn(ST_15,"stoch 15min");
AddColumn(Condition15,"cond 15"
Regards
ChrisB
burlap58 wrote:
>
> I would like to do an exploration that would give me those stocks with
> stchastics less than 20 on a 15 minute chart. TimeFrameSet seems to be
> limited to price and volume. I've tried it and it doesn't work for me.
> How can I do this on an intraday basis? Thanks, Lloyd
>
>
> Messages in this topic
> <http://groups.yahoo.com/group/amibroker/message/118885;_ylc=X3oDMTM4bWVjbTVkBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BG1zZ0lkAzExODg4NQRzZWMDZnRyBHNsawN2dHBjBHN0aW1lAzEyMDAzMzc4OTUEdHBjSWQDMTE4ODg1>
> (1) Reply (via web post)
> <http://groups.yahoo.com/group/amibroker/post;_ylc=X3oDMTJyNjdkNTNsBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BG1zZ0lkAzExODg4NQRzZWMDZnRyBHNsawNycGx5BHN0aW1lAzEyMDAzMzc4OTU-?act=reply&messageNum=118885>
> | Start a new topic
> <http://groups.yahoo.com/group/amibroker/post;_ylc=X3oDMTJlMW5yajdpBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA250cGMEc3RpbWUDMTIwMDMzNzg5NQ-->
>
> Messages
> <http://groups.yahoo.com/group/amibroker/messages;_ylc=X3oDMTJlcG8zZGx1BF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA21zZ3MEc3RpbWUDMTIwMDMzNzg5NA-->
> | Files
> <http://groups.yahoo.com/group/amibroker/files;_ylc=X3oDMTJmNDlscWc0BF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA2ZpbGVzBHN0aW1lAzEyMDAzMzc4OTQ->
> | Photos
> <http://groups.yahoo.com/group/amibroker/photos;_ylc=X3oDMTJlaWw3MGRhBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA3Bob3QEc3RpbWUDMTIwMDMzNzg5NA-->
>
> 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>
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/
|