b4313ad740
Adds BrokerageModelAlgorithm to showcase the implementation
78 lines
3.8 KiB
Plaintext
78 lines
3.8 KiB
Plaintext
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>4a5ded1f-3e34-40e2-b1f2-9a8a02195508</ProjectGuid>
|
|
<ProjectHome>.</ProjectHome>
|
|
<StartupFile>
|
|
</StartupFile>
|
|
<SearchPath>
|
|
</SearchPath>
|
|
<WorkingDirectory>.</WorkingDirectory>
|
|
<OutputPath>.</OutputPath>
|
|
<Name>QuantConnect.Algorithm.PythonTools</Name>
|
|
<RootNamespace>QuantConnect.Algorithm.PythonTools</RootNamespace>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="AddRemoveSecurityRegressionAlgorithm.py" />
|
|
<Compile Include="BrokerageModelAlgorithm.py" />
|
|
<Compile Include="CustomModelsAlgorithm.py" />
|
|
<Compile Include="BasicTemplateAlgorithm.py" />
|
|
<Compile Include="BasicTemplateFillForwardAlgorithm.py" />
|
|
<Compile Include="BasicTemplateFuturesAlgorithm.py" />
|
|
<Compile Include="BasicTemplateFuturesConsolidationAlgorithm.py" />
|
|
<Compile Include="BasicTemplateOptionsAlgorithm.py" />
|
|
<Compile Include="BasicTemplateOptionsFilterUniverseAlgorithm.py" />
|
|
<Compile Include="CoarseFineFundamentalComboAlgorithm.py" />
|
|
<Compile Include="CustomBenchmarkAlgorithm.py" />
|
|
<Compile Include="CustomChartingAlgorithm.py" />
|
|
<Compile Include="CustomDataBitcoinAlgorithm.py" />
|
|
<Compile Include="CustomDataNIFTYAlgorithm.py" />
|
|
<Compile Include="DailyAlgorithm.py" />
|
|
<Compile Include="DataConsolidationAlgorithm.py" />
|
|
<Compile Include="DelistingEventsAlgorithm.py" />
|
|
<Compile Include="DividendAlgorithm.py" />
|
|
<Compile Include="CustomDataUniverseAlgorithm.py" />
|
|
<Compile Include="DropboxBaseDataUniverseSelectionAlgorithm.py" />
|
|
<Compile Include="EmaCrossUniverseSelectionAlgorithm.py" />
|
|
<Compile Include="ETFGlobalRotationAlgorithm.py" />
|
|
<Compile Include="HistoryAndWarmupRegressionAlgorithm.py" />
|
|
<Compile Include="LimitFillRegressionAlgorithm.py" />
|
|
<Compile Include="MACDTrendAlgorithm.py" />
|
|
<Compile Include="main.py" />
|
|
<Compile Include="MarginCallEventsAlgorithm.py" />
|
|
<Compile Include="MarketOnOpenOnCloseAlgorithm.py" />
|
|
<Compile Include="MovingAverageCrossAlgorithm.py" />
|
|
<Compile Include="OrderTicketDemoAlgorithm.py" />
|
|
<Compile Include="ParameterizedAlgorithm.py" />
|
|
<Compile Include="PythonPackageTestAlgorithm.py" />
|
|
<Compile Include="QCUWeatherBasedRebalancing.py" />
|
|
<Compile Include="QuandlFuturesDataAlgorithm.py" />
|
|
<Compile Include="QuandlImporterAlgorithm.py" />
|
|
<Compile Include="RegressionAlgorithm.py" />
|
|
<Compile Include="RollingWindowAlgorithm.py" />
|
|
<Compile Include="ScheduledEventsAlgorithm.py" />
|
|
<Compile Include="UniverseSelectionRegressionAlgorithm.py" />
|
|
<Compile Include="UpdateOrderRegressionAlgorithm.py" />
|
|
<Compile Include="UserDefinedUniverseAlgorithm.py" />
|
|
<Compile Include="WarmupAlgorithm.py" />
|
|
<Compile Include="WarmupHistoryAlgorithm.py" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
|
|
<!-- Uncomment the CoreCompile target to enable the Build command in
|
|
Visual Studio and specify your pre- and post-build commands in
|
|
the BeforeBuild and AfterBuild targets below. -->
|
|
<!--<Target Name="CoreCompile" />-->
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
</Project> |