d5c64dee54
Adds Lean Symbol object decoder. Given a string with ticker + security ID, returns some of the security properties (market, security type, etc) Closes #2909 Some users have the Symbol string object but don't know what the ID means. This python class can be used to translate the ID. Added unit test.
59 lines
2.3 KiB
Plaintext
59 lines
2.3 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>1c47f4db-2aff-4fae-9142-b33be654a516</ProjectGuid>
|
|
<ProjectHome>
|
|
</ProjectHome>
|
|
<StartupFile>tests\test_api.py</StartupFile>
|
|
<SearchPath>
|
|
</SearchPath>
|
|
<WorkingDirectory>.</WorkingDirectory>
|
|
<OutputPath>.</OutputPath>
|
|
<Name>QuantConnect.ApiPython</Name>
|
|
<RootNamespace>ApiPython</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="CreateLeanReport.py" />
|
|
<Compile Include="quantconnect\api.py" />
|
|
<Compile Include="quantconnect\LeanOutputReader.py" />
|
|
<Compile Include="quantconnect\LeanReportCreator.py" />
|
|
<Compile Include="quantconnect\symbol.py" />
|
|
<Compile Include="quantconnect\__init__.py" />
|
|
<Compile Include="setup.py" />
|
|
<Compile Include="tests\test_api.py" />
|
|
<Compile Include="tests\test_symbol.py" />
|
|
<Compile Include="tests\__init__.py">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="tests\" />
|
|
<Folder Include="quantconnect\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="AuthorProfile.png" />
|
|
<Content Include="MANIFEST.in" />
|
|
<Content Include="README.rst">
|
|
<SubType>Code</SubType>
|
|
</Content>
|
|
<Content Include="user_data.json" />
|
|
</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> |