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

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