PureBytes Links
Trading Reference Links
|
Hi,
My trading system is as follows:
LongSetup = Cross(PDI(8),MDI(8));
Longstop = Low - 0.0050; // This is FX: 50 points trailing stop
Stopbuy = High + 0.0005; // Buy point is 5 points above high of
setup day
Buy = H>StopBuy;
BuyPrice = Max(Open,StopBuy);
Sell = L < LongStop;
SellPrice = Min(Open,LongStop);
Buy = ExRem( Buy, Sell );
Sell = ExRem( Sell, Buy );
This works fine in the backtester. However, the risk:reward ratio
stats are wrong.
Risk:Reward should be:
(SellPrice - BuyPrice) / (Stopbuy - Longstop)
[Reward] [Risk]
So...
How does Amibroker know that SellPrice, buyPrice, Stopbuy and
longstop are my variables to use for Stats calculations? It doesn't
seem to, therefore, the stats are wrong!!!
Alex
Content-Description: "AVG certification"
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.441 / Virus Database: 268.17.37/682 - Release Date: 2/12/2007 1:23 PM
|