- UID
- 2
- 积分
- 2874674
- 威望
- 1387366 布
- 龙e币
- 1487308 刀
- 在线时间
- 13156 小时
- 注册时间
- 2009-12-3
- 最后登录
- 2024-11-24
|
【SessionFirstBarTime】
- inputs:
- SessionType( numericsimple ),
- SessionNum( numericsimple ) ;
- variables:
- var0( BarType ),
- var1( false ),
- var2( 0 ) ;
- arrays:
- arr0[ 1, 50 ]( 0 ) ;
-
- if var0 <> 1 then
- RaiseRuntimeError(
- "Invalid interval. The SessionFirstBarTime function requires intraday data." ) ;
- if var1 = false then
- begin
- for Value1 = 0 to 1
- begin
- var2 = SessionCount( Value1 ) ;
- for Value2 = 1 to var2
- begin
- arr0[ Value1, Value2 ] = TimeToMinutes( SessionStartTime(
- Value1, Value2 ) ) ;
- end ;
- end ;
- var1 = true ;
- end ;
- SessionFirstBarTime = MinutesToTime( arr0[ SessionType, SessionNum ] +
- BarInterval ) ;
复制代码 |
论坛官方微信、群(期货热点、量化探讨、开户与绑定实盘)
|