/*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using QuantConnect.Data;
using QuantConnect.Data.Market;
namespace QuantConnect
{
///
/// Provides static properties to be used as selectors with the indicator system
///
public static partial class Field
{
///
/// Gets a selector that selects the Open value
///
public static Func Open
{
get { return BaseDataBarPropertyOrValue(x => x.Open); }
}
///
/// Gets a selector that selects the High value
///
public static Func High
{
get { return BaseDataBarPropertyOrValue(x => x.High); }
}
///
/// Gets a selector that selects the Low value
///
public static Func Low
{
get { return BaseDataBarPropertyOrValue(x => x.Low); }
}
///
/// Gets a selector that selects the Close value
///
public static Func Close
{
get { return x => x.Value; }
}
///
/// Defines an average price that is equal to (O + H + L + C) / 4
///
public static Func Average
{
get { return BaseDataBarPropertyOrValue(x => (x.Open + x.High + x.Low + x.Close) / 4m); }
}
///
/// Defines an average price that is equal to (H + L) / 2
///
public static Func Median
{
get { return BaseDataBarPropertyOrValue(x => (x.High + x.Low) / 2m); }
}
///
/// Defines an average price that is equal to (H + L + C) / 3
///
public static Func Typical
{
get { return BaseDataBarPropertyOrValue(x => (x.High + x.Low + x.Close) / 3m); }
}
///
/// Defines an average price that is equal to (H + L + 2*C) / 4
///
public static Func Weighted
{
get { return BaseDataBarPropertyOrValue(x => (x.High + x.Low + 2 * x.Close) / 4m); }
}
///
/// Defines an average price that is equal to (2*O + H + L + 3*C)/7
///
public static Func SevenBar
{
get { return BaseDataBarPropertyOrValue(x => (2*x.Open + x.High + x.Low + 3*x.Close)/7m); }
}
///
/// Gets a selector that selectors the Volume value
///
public static Func Volume
{
get { return BaseDataBarPropertyOrValue(x => x is TradeBar ? ((TradeBar)x).Volume : 0m, x => 0m); }
}
private static Func BaseDataBarPropertyOrValue(Func selector, Func defaultSelector = null)
{
return x =>
{
var bar = x as IBaseDataBar;
if (bar != null)
{
return selector(bar);
}
defaultSelector = defaultSelector ?? (data => data.Value);
return defaultSelector(x);
};
}
}
}