PureBytes Links
Trading Reference Links
|
Hello Bill,
I do not believe that the default Equity line function in the AA window
will display 2 or more equity lines, But you can do what you ask in
Indicator Builder:
Here is a sample formula for indicator builder.
//First system ( Buy and Hold )
Buy=DateNum()==1010102 AND Open; // Buys in January 2001
Sell=DateNum()==1011231 AND Open ; // sell in december 2001
Equity1=Equity();
Plot(Equity1,"Equity1",4,1);
/***********************************/
//Second system ( moving average Cross)
Buy=Cross(MA(C,3),MA(C,15));
Sell=Cross(MA(C,15),MA(C,3));
Equity2=Equity();
Plot(Equity2,"Equity2",5,1);
Anthony
bvandyke wrote:
> Hello,
>
> I just purchased AB today and wonder if there is a way on the Equity
> Line part of the default layout....to after one runs a Historical
> Backtest to have a Buy&Hold Equity Line show on the same part of the
> default chart as is the Equity Line? This way one could compare
> equity curves in the same part of the Chart.
>
> Thank you in advance; this looks like a very stimulating group of
> users and i look forward to using the tool of AB very much.
>
> Bill
>
>
> Yahoo! Groups Sponsor
ADVERTISEMENT
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|