PureBytes Links
Trading Reference Links
|
Please try the following very simple Exploration on INTC on 6/13/2007:
//////////// Code begins ////////////
HighEMA = EMA(H, 21);
LowEMA = EMA(L, 21);
MaxTradeLoss = C - LowEMA;
MaxPercentLoss = C / MaxTradeLoss;
Filter = Cross(C, HighEMA);
AddColumn(C, "Close");
AddColumn(LowEMA, "LowEMA");
AddColumn(MaxTradeLoss, "MaxTradeLoss");
AddColumn(MaxPercentLoss, "MaxPercentLoss");
//////////// Code ends ////////////
/*
Exploration shows:
INTC 6/13/2007 Close = 22.67 LowEMA = 21.85
MaxTradeLoss = 0.82 MaxPercentLoss = 27.57(?)
*/
The Exploration showed that MaxPercentLoss = 27.57, however, 22.67 / (22.67 - 21.85) is
actually equal to 27.6463.
Does anyone know why Exploration gives slightly different number for such a simple
calculation?
Any help is greatly appreciated.
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
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/
|