forked from StockSharp/StockSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStopOrdersWindow.xaml.cs
More file actions
59 lines (50 loc) · 1.64 KB
/
StopOrdersWindow.xaml.cs
File metadata and controls
59 lines (50 loc) · 1.64 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/StockSharp/StockSharp/blob/master/LICENSE
Removal of this comment is a violation of the license agreement.
Project: SampleCQG.SampleCQGPublic
File: StopOrdersWindow.xaml.cs
Created: 2015, 11, 11, 2:32 PM
Copyright 2010 by StockSharp, LLC
*******************************************************************************************/
#endregion S# License
namespace SampleCQG
{
using System.Collections.Generic;
using Ecng.Common;
using Ecng.Xaml;
using MoreLinq;
using StockSharp.Algo;
using StockSharp.BusinessEntities;
using StockSharp.Localization;
using StockSharp.Xaml;
public partial class StopOrdersWindow
{
public StopOrdersWindow()
{
InitializeComponent();
}
private void OrderGrid_OnOrderCanceling(IEnumerable<Order> orders)
{
orders.ForEach(MainWindow.Instance.Trader.CancelOrder);
}
private void OrderGrid_OnOrderReRegistering(Order order)
{
var window = new OrderWindow
{
Title = LocalizedStrings.Str2976Params.Put(order.TransactionId),
SecurityProvider = MainWindow.Instance.Trader,
MarketDataProvider = MainWindow.Instance.Trader,
Portfolios = new PortfolioDataSource(MainWindow.Instance.Trader),
Order = order.ReRegisterClone(newVolume: order.Balance),
};
if (window.ShowModal(this))
{
MainWindow.Instance.Trader.ReRegisterOrder(order, window.Order);
}
}
}
}