PureBytes Links
Trading Reference Links
|
Rod wrote
>Does anyone have a formula for the PPO?
Rod,
from google, first entry (http://trader.snowseed.com/ppo.htm):
PPO = (Fast_EMA - Slow_EMA) / Fast_EMA
Define your variables
Fast_Length = Param(..);
Slow_Length = Param(..);
Fast_EMA = EMA(C, Fast_Length);
Slow_EMA = EMA(C, Slow_Length);
define the indicator
PPO = (Fast_EMA - Slow_EMA) / Fast_EMA
plot it
Plot(PPO,...);
regards,
Franco
------------------------ 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/
|