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

[amibroker] adding benchmark performance to CBT Report



PureBytes Links

Trading Reference Links



I am trying to add performance of a benchmark (e.g.  ^gspc) during the test period to my back test report. I have come up with the following code.

 

StartingBar = FirstBarIndex(Status("FirstBarinTest"));
EndingBar = LastBarIndex(
Status("LastBarinTest"));

Benchmark = Foreign("^GSPC","Close");
StartPriceBenchmark =
LastValue( ValueWhen ( BarIndex() <= StartingBar ,Benchmark )) ;
EndPriceBenchmark =
LastValue( ValueWhen( BarIndex() >=EndingBar, Benchmark )) ;
BenchmarkPerformance =  
100 * ( EndPriceBenchmark[ StartingBar ] - StartPriceBenchmark[ StartingBar ] ) / Benchmark[ StartingBar ];
bo.AddCustomMetric(
"Benchmark Performance", BenchmarkPerformance );

 

The problem with the above code is that it picks up the closing price of the starting date of the test rather than the close of the day previous to first day of the test. Any suggestions? TIA



__._,_.___


**** 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

__,_._,___