PureBytes Links
Trading Reference Links
|
Hello,
1. You should make a habit of adding SPACES after comma and after brace.
This increases clarity and helps finding syntax errors.
2. You should check the Function reference in the User's guide
http://www.amibroker.com/f?plot
to find out that Plot function needs a NAME of the plot as a second parameter
- it was missing from your coding.
Correct code is:
Plot( EMA( C, 3 ) + EMA( C - EMA( C, 3 ) , 3 ) , "RedLagEMA", colorRed, styleLine );
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "bruiserbbq" <bruiserbbq@xxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, June 19, 2004 1:09 AM
Subject: [amibroker] Re: Lag Reduced Moving Average help!
> Thanks guys...but I'm still getting an error.
>
> Here's what I have so far:
>
> Plot(EMA(C,3) + EMA((C - EMA(C,3)),3,colorRed,styleLine);
>
> Where am I going wrong?
>
>
> Cheers Bruiser
>
>
>
>
>
> 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
>
>
>
>
>
>
------------------------ 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/
|