[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] How can I get AB to plot a green/red dot after direction change MA? (AFL quest.)



PureBytes Links

Trading Reference Links



Something along these lines should work:
 
x = ma(c, 192) + ma(c, 64);
xdown = iif(x < ref(x, -1), 1, 0);
xup = iif(x >ref(x, -1), 1, 0);
plot(c, "", colorpalegreen, stylebar);
plotshapes(shapesmallcircle * (xdown + xup), iif(xdown, colorred, colorgreen), 0,
    iif(xdown, h, l),  iif(xdown, 15, -15));
 
Bill
----- Original Message -----
Sent: April 08, 2009 11:03 PM
Subject: [amibroker] How can I get AB to plot a green/red dot after direction change MA? (AFL quest.)

All,

How can I code this: Plot a red dot on the chart if the sum of SMA(192) + SMA(64) turn down and a green dot once it turns up? This is supposed to be a mid-term trading system, being either long when the sum of the mosing averages turn up and short when it turns down.

Thank you.

Samantha



------------------------------------

**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.

TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com

TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)

For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/

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/


__._,_.___


**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.

TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com

TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)

For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/





Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___