MonthlyStdDev

View as Markdown

Definition

Returns the monthly standard deviation.

Property Value

A double value that represents the monthly standard deviation.

Syntax

\<tradecollection\>.TradesPerformance.MonthlyStdDev

Examples

protected override void OnBarUpdate()
{
// Print out the monthly standard deviation
Print("Monthly standard deviation is: " + SystemPerformance.AllTrades.TradesPerformance.MonthlyStdDev);
}