Ulcer

View as Markdown

Definition

Returns the Ulcer.

Property Value

A double value that represents the Ulcer.

Syntax

\<TradeCollection\>.TradesPerformance.\<TradesPerformanceValues\>.Ulcer

Examples

1protected override void OnBarUpdate()
2{
3 // Print out the Ulcer index of all trades
4 Print("Turnaround of all trades is: " + SystemPerformance.AllTrades.TradesPerformance.Currency.Ulcer);
5}