forked from Nico88-Vs/Quantower-Orders-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CondictionalStrategyExample.csproj
27 lines (27 loc) · 1.34 KB
/
CondictionalStrategyExample.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8</TargetFramework>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Platforms>AnyCPU</Platforms>
<AlgoType>Strategy</AlgoType>
<AssemblyName>CondictionalStrategyExample</AssemblyName>
<RootNamespace>CondictionalStrategyExample</RootNamespace>
<StartAction>Program</StartAction>
<StartProgram>A:\Quantower\TradingPlatform\v1.141.10\Console.StarterNew.exe</StartProgram>
<StartArguments>--address 127.0.0.1 --port 51024</StartArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>A:\Quantower\TradingPlatform\v1.141.10\..\..\Settings\Scripts\Strategies\CondictionalStrategyExample</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>A:\Quantower\TradingPlatform\v1.141.10\..\..\Settings\Scripts\Strategies\CondictionalStrategyExample</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="TradingPlatform.BusinessLayer">
<HintPath>A:\Quantower\TradingPlatform\v1.141.10\bin\TradingPlatform.BusinessLayer.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</Project>