Files
quantconnect--lean/Algorithm.Framework/QuantConnect.Algorithm.Framework.csproj
T
Michael Handschuh 92c5e64024 Adds VWAP and STD execution models
VWAP will submit market orders while the current price is more favorable than VWAP.
STD will submit market orders while the current price is a configured number of
standard deviations away from the mean in the favorable direction.
2018-04-06 16:30:26 -04:00

116 lines
6.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{75981418-7246-4B91-B136-482728E02901}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>QuantConnect.Algorithm.Framework</RootNamespace>
<AssemblyName>QuantConnect.Algorithm.Framework</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>6</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="NodaTime, Version=1.3.0.0, Culture=neutral, PublicKeyToken=4226afe0d9b296d1, processorArchitecture=MSIL">
<HintPath>..\packages\NodaTime.1.3.4\lib\net35-Client\NodaTime.dll</HintPath>
</Reference>
<Reference Include="Python.Runtime, Version=2.4.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\QuantConnect.pythonnet.1.0.5.5\lib\Python.Runtime.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Common\Properties\SharedAssemblyInfo.cs">
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<Compile Include="Alphas\AlphaModelPythonWrapper.cs" />
<Compile Include="Alphas\EmaCrossAlphaModel.cs" />
<Compile Include="Alphas\RsiAlphaModel.cs" />
<Compile Include="Execution\IExecutionModel.cs" />
<Compile Include="Execution\ImmediateExecutionModel.cs" />
<Compile Include="Execution\NullExecutionModel.cs" />
<Compile Include="Execution\ExecutionModelPythonWrapper.cs" />
<Compile Include="Execution\OrderSizing.cs" />
<Compile Include="Execution\StandardDeviationExecutionModel.cs" />
<Compile Include="Execution\VolumeWeightedAveragePriceExecutionModel.cs" />
<Compile Include="INotifiedSecurityChanges.cs" />
<Compile Include="NotifiedSecurityChanges.cs" />
<Compile Include="Portfolio\IPortfolioConstructionModel.cs" />
<Compile Include="Portfolio\NullPortfolioConstructionModel.cs" />
<Compile Include="Portfolio\PortfolioConstructionModelPythonWrapper.cs" />
<Compile Include="Portfolio\EqualWeightingPortfolioConstructionModel.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="QCAlgorithmFramework.Python.cs" />
<Compile Include="QCAlgorithmFramework.cs" />
<Compile Include="Risk\IRiskManagementModel.cs" />
<Compile Include="Risk\MaximumDrawdownPercentPerSecurity.cs" />
<Compile Include="Risk\NullRiskManagementModel.cs" />
<Compile Include="Risk\RiskManagementModelPythonWrapper.cs" />
<Compile Include="Selection\CoarseFundamentalUniverseSelectionModel.cs" />
<Compile Include="Selection\FineFundamentalUniverseSelectionModel.cs" />
<Compile Include="Selection\FundamentalUniverseSelectionModel.cs" />
<Compile Include="Selection\IUniverseSelectionModel.cs" />
<Compile Include="Selection\ManualUniverseSelectionModel.cs" />
<Compile Include="Selection\ManualUniverse.cs" />
<Compile Include="Alphas\ConstantAlphaModel.cs" />
<Compile Include="Alphas\MacdAlphaModel.cs" />
<Compile Include="Alphas\IAlphaModel.cs" />
<Compile Include="Selection\UniverseSelectionModelPythonWrapper.cs" />
<Compile Include="Selection\QC500UniverseSelectionModel.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Algorithm\QuantConnect.Algorithm.csproj">
<Project>{3240ACA4-BDD4-4D24-AC36-BBB651C39212}</Project>
<Name>QuantConnect.Algorithm</Name>
</ProjectReference>
<ProjectReference Include="..\Common\QuantConnect.csproj">
<Project>{2545C0B4-FABB-49C9-8DD1-9AD7EE23F86B}</Project>
<Name>QuantConnect</Name>
</ProjectReference>
<ProjectReference Include="..\Indicators\QuantConnect.Indicators.csproj">
<Project>{73fb2522-c3ed-4e47-8e3d-afad48a6b888}</Project>
<Name>QuantConnect.Indicators</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\QuantConnect.pythonnet.1.0.5.5\build\QuantConnect.pythonnet.targets" Condition="Exists('..\packages\QuantConnect.pythonnet.1.0.5.5\build\QuantConnect.pythonnet.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\QuantConnect.pythonnet.1.0.5.5\build\QuantConnect.pythonnet.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\QuantConnect.pythonnet.1.0.5.5\build\QuantConnect.pythonnet.targets'))" />
</Target>
</Project>