PureBytes Links
Trading Reference Links
|
Here is one way:
MA1=MA(C,28);
MA2=MA(C,13);
finalmovingaverage=IIf(C > Ref(C,-10),MA1,MA2);
Plot(finalmovingaverage,WriteIf(C >
Ref(C,-10),"ma1","ma2"),colorRed,styleLine);
Plot(C,"close",colorBlack,styleCandle);
----- Original Message -----
From: "goldwing01" <GOLDWING01@xxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Sunday, December 21, 2003 10:21 AM
Subject: [amibroker] need help with code
> how can i make this work in amibroker?
>
> if Mode = 1 then Plot1(MA1, "MA1");
> if Mode = -1 then Plot2(MA2, "MA2");
>
>
>
> Send BUG REPORTS to bugs@xxxxxxxxxxxxx
> Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> 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/
>
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.553 / Virus Database: 345 - Release Date: 12/19/2003
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
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/
|