RiskFreeReturn

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Strategy > TradeCollection > TradesPerformance >

RiskFreeReturn

Previous page Return to chapter overview Next page

Definition

The risk free return used in calculations of Sharpe and Sortino ratios.
 

Property Value

A double value that represents the risk free return.

 

Syntax
<TradeCollection>.TradesPerformance.RiskFreeReturn

 

 

Examples

ns

protected override void OnBarUpdate()
{
    // Set a 3.5% risk free return
    SystemPerformance.AllTrades.TradesPerformance.RiskFreeReturn = 0.035;
 
    // Print out the Sharpe ratio of all trades based on a 3.5% risk free return
    Print("Sharpe ratio is: " + SystemPerformance.AllTrades.TradesPerformance.SharpeRatio);
}