PureBytes Links
Trading Reference Links
|
Hi
Can anyone advise how to expand the vertical axis for the formula below:-
Many thanks in advance.
Ken
/* MA now operates on 15 minute data, ma15_13 holds time-compressed 13 bar
MA of 15min bars */
ma15_13 = MA( C, 13 );
TimeFrameRestore(); // restore time frame to original
TimeFrameSet( inHourly ); // switch now to hourly
mah_9 = EMA( C, 34 ); // 9 bar moving average from hourly data
TimeFrameRestore(); // restore time frame to original
Plot( Close, "Price", colorYellow, styleCandle );
// plot expanded average
Plot( TimeFrameExpand( ma15_13, in15Minute), "13 bar moving average from 15
min bars", colorBlack );
Plot( TimeFrameExpand( mah_9, inHourly), "9 bar moving average from hourly
bars", colorRed );
_____
From: Christoper [mailto:turkey@xxxxxxxxxxxxxxx]
Sent: Tuesday, 2 November 2004 9:28 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: Help in automatic analysis
This is most definately doable. Take a look here:
http://www.amibroker.com/guide/h_timeframe.html
Especially, example 3 with the triple screen example. Just follow
that, and you'll be good to go.
- chris
--- In amibroker@xxxxxxxxxxxxxxx, "Ashish Bhatia" <bhatia_ash@xxxx>
wrote:
>
>
> Hi,
>
> Is there a way of incorporating weekly and monthly values for an
> indicator in Automatic Analysis. For example a buy should be given
in
> Daily chart when it is both a buy in weekly and monthly.
>
> Any help is appreciated.
>
>
> Regards
>
> Ashish
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
<http://us.ard.yahoo.com/SIG=1294jscc4/M=315388.5543473.6613715.3001176/D=gr
oups/S=1705632198:HM/EXP=1099434537/A=2372354/R=0/SIG=12id813k2/*https:/www.
orchardbank.com/hcs/hcsapplication?pf=PLApply&media=EMYHNL40F21004SS> click
here
<http://us.adserver.yahoo.com/l?M=315388.5543473.6613715.3001176/D=groups/S=
:HM/A=2372354/rand=987269189>
_____
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
<mailto:amibroker-unsubscribe@xxxxxxxxxxxxxxx?subject=Unsubscribe>
* Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/> 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/
|