4

我无法确定任何特定时间处于哪个交易时段。

有四个可能的会话,显示在这张取自 ForexFactory.com 的图片中

在此处输入图像描述

我有这个方法,我需要检查当前时间是否在指定的交易时段内。

public bool IsTradingSession(TradingSession tradingSession, DateTime currentTime)
{
    //currentTime is in local time.


    //Regular session is 5PM - next day 5PM, this is the session in the picture.
    //Irregular sessions also occur for example late open (3AM - same day 5PM)  or early close (5PM - next day 11AM)
    DateTime sessionStart = Exchange.ToLocalTime(Exchange.CurrentSessionOpen);
    DateTime sessionEnd = Exchange.ToLocalTime(Exchange.CurrentSessionClose);

    if(tradingSession == TradingSession.Sydney)
        return ....... ? true : false;
    if(tradingSession == TradingSession.Tokyo)
        return ....... ? true : false;        
    if(tradingSession == TradingSession.London)
        return ....... ? true : false;
    if (tradingSession == TradingSession.NewYork)
        return ....... ? true : false;

    return false;
}

采用:

    bool isSydneySession = IsTradingSession(TradingSession.Sydney, CurrentTime);
    bool isTokyoSession = IsTradingSession(TradingSession.Tokyo, CurrentTime);
    bool isLondonSession = IsTradingSession(TradingSession.London, CurrentTime);
    bool isNewYorkSession = IsTradingSession(TradingSession.NewYork, CurrentTime);

谢谢

4

3 回答 3

3

我建议为每个交易时段编写一个简单的函数,它接受一个 DateTime 并返回一个布尔值,指示它在那个时候是否打开。

var sydneyOpen = new TimeSpan(17, 0, 0);
var sydneyClose = new TimeSpan(2, 0, 0);
Func<DateTime, bool> isOpenInSydney = d => 
    (d.TimeOfDay > sydneyOpen || d.TimeOfDay < sydneyClose);

// same for other markets, write a function to check against two times

然后将它们放入Dictionary<TradingSession, Func>这样的通用检索中......

var marketHours = new Dictionary<TradingSession, Func<DateTime, bool>>();
marketHours.Add(TradingSession.Sydney, isOpenInSydney);
// add other markets...

然后您现有的方法只需为给定选择适当的功能TradingSession并应用它

public bool IsTradingSession(TradingSession tradingSession, DateTime currentTime)
{
    var functionForSession = marketHours[tradingSession];
    return functionForSession(currentTime);
}

只要您的应用程序仅在单个时区运行,我认为您不需要 UTC 时间,但夏令时可能会导致问题。


解决两天而不是一天的交易时段问题的一个好方法是编写一个帮助程序,它可以精确地考虑它是​​否是“跨日”交易时段并为您应用不同的规则:

private bool IsBetween(DateTime now, TimeSpan open, TimeSpan close)
{
    var nowTime = now.TimeOfDay;
    return (open < close
        // if open is before close, then now must be between them
        ? (nowTime > open && nowTime < close)
        // otherwise now must be *either* after open or before close
        : (nowTime > open || nowTime < close));
}

进而

var sydneyOpen = new TimeSpan(17, 0, 0);
var sydneyClose = new TimeSpan(2, 0, 0);
Func<DateTime, bool> isOpenInSydney = d => IsBetween(d, sydneyOpen, sydneyClose);
于 2012-07-11T03:56:55.470 回答
2

您可以使用 > & < 进行比较或比较刻度。

查看相关问题:检查日期时间实例是否位于其他两个日期时间对象之间

为了避免多个 if 语句,您还可以创建一个包含开始时间和结束时间的 TradingSession 对象,并定义一个属性/函数来检查是否在会话中。当我有大开关或 if 阻塞时,通常表明错过了 OO 机会:)

TradingSession sydneySession = new TradingSession 
{
    StartTimeUtc = ...;
    EndTimeUtc = ...;
}

然后交易会话对象可以具有属性 IsInSession。

public bool IsInSession
{
    get {
        return DateTime.UTCNow >= StartTimeUtc && DateTime.UTCNow <= EndTimeUtc;
    }
}

这使用 UTC 时间来消除时区问题。

于 2012-07-11T03:21:09.840 回答
0

您需要将本地时间标准化为 UTC。然后,您可以比较跨地区的时间。

对于每个交易时段,您需要知道 UTC 的时段开始和结束时间。

您需要 UTC 的当前时间。 DateTime.UtcNow, 例如。

然后,您可以对每个交易时段窗口进行范围比较:

if(tradingSession == TradingSession.Sydney)
        return currentTimeUtc >= sydneyStartTimeUtc && currentTimeUtc <= sydneyEndTimeUtc;

ETC...

如果您尝试验证交易时间对于特定交易时段的交易是否有效,这将正常工作。

但是,如果您试图根据时间确定交易属于哪个交易时段,有时您会得到多个答案,因为交易时段重叠。多个交易时段可能在给定时间内有效。

于 2012-07-11T03:21:31.210 回答