MonthlyUlcer

View as Markdown

Definition

Returns the monthly Ulcer index.

Property Value

A double value that represents the monthly Ulcer index.

Syntax

\<tradecollection\>.TradesPerformance.MonthlyUlcer

Examples

1protected override void OnBarUpdate()
2{
3 // Print out the monthly Ulcer index
4 Print("Monthly Ulcer index is: " + SystemPerformance.AllTrades.TradesPerformance.MonthlyUlcer);
5}