PureBytes Links
Trading Reference Links
|
HI
I hope to add a PER-TRADE custom metric to the trade list , NOT a
custom metric to the backtest report, backtest "summary" and
optimization result list. The bo.AddCustomMetric() does not do what
I want, and trade.AddCustomMetric() does not support format like
bo.AddCustomMetric.
Anyway later I figured out that in AFL, values can be character as
well as numeric, so I assign string formatted as "XYZ" to the values
in trade.AddCustomMetric(), the original problem is solved.
Thanks for your attention / Huanyan
--- In amibroker@xxxxxxxxxxxxxxx, "Steve Dugas" <sjdugas@xxx> wrote:
>
> Hi - from the users guide...
>
> bool AddCustomMetric( string Title, variant Value, [optional]
variant
> LongOnlyValue, [optional] variant ShortOnlyValue , [optional]
variant
> DecPlaces = 2 )
>
> ...code would look something like this, last zero means no decimal
places...
> bo.AddCustomMetric( "MF", boModeFlipCount, 0, 0, 0 );
>
>
>
> ----- Original Message -----
> From: "huanyanlu" <huanyan2000@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Wednesday, February 04, 2009 4:51 AM
> Subject: [amibroker] Is it possible to format the added metrics in
custom
> backtester
>
>
> >
> > Hi,
> >
> > It is good to be able to add some custom metrics to the backtester
> > report, but then I have one question: Is it possible to set the
format
> > of the added custom metrics ?
> >
> > For example, I wrote to add a trade-by-trade metrics of XYZ as
follows:
> >
> >
> > //=================================================
> > ......
> >
> > XYZ=..... // definition of XYZ
> >
> > trade.AddCustomMetric("New metrics XYZ ", XYZ);
> > ......
> > //==================================================
> >
> >
> > Later in custome backtest report, I found xyz with format such as
124.00,
> > 212.00, 505.00, 621.00,etc. But I hope it will show as : 124,
212, 505,
> > 621,etc.
> >
> > I tried
> > trade.AddCustomMetric("New metrics XYZ ", int(XYZ));
> >
> > but the result is the same as the above format with two decimals
> >
> > thanks for any help / Huanyan
> >
> >
> >
> > ------------------------------------
> >
> > **** IMPORTANT ****
> > This group is for the discussion between users only.
> > This is *NOT* technical support channel.
> >
> > *********************
> > TO GET TECHNICAL 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
> >
> >
> >
> >
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL 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/
|