1 Star 0 Fork 0

知书僮/StockSharp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
IPositionProvider.cs 505 Bytes
一键复制 编辑 原始数据 按行查看 历史
namespace StockSharp.BusinessEntities
{
using System;
using System.Collections.Generic;
/// <summary>
/// The position provider interface.
/// </summary>
public interface IPositionProvider
{
/// <summary>
/// Get all positions.
/// </summary>
IEnumerable<Position> Positions { get; }
/// <summary>
/// New position received.
/// </summary>
event Action<Position> NewPosition;
/// <summary>
/// Position changed.
/// </summary>
event Action<Position> PositionChanged;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhishutong_admin/StockSharp.git
git@gitee.com:zhishutong_admin/StockSharp.git
zhishutong_admin
StockSharp
StockSharp
master

搜索帮助