- UID
- 2
- 积分
- 2874674
- 威望
- 1387366 布
- 龙e币
- 1487308 刀
- 在线时间
- 13156 小时
- 注册时间
- 2009-12-3
- 最后登录
- 2024-11-24
|
【NthExtremes】
- inputs:
- PriceValue( numericseries ),
- Len( numericsimple ),
- N ( numericsimple ),
- HiLo( numericsimple ),
- oExtremeVal( numericref ),
- oExtremeBar( numericref ) ;
- arrays:
- arr0[ 2, 100 ]( 0 ) ;
- condition1 = N > Len or Len > 100 ;
- if condition1 then
- begin
- oExtremeVal = 0 ;
- oExtremeBar = -1 ;
- NthExtremes = -1 ;
- end
- else
- begin
-
-
- for Value1 = 1 to Len
- begin
- arr0[ 1, Value1 ] = PriceValue[ Value1 - 1 ] ;
- arr0[ 2, Value1 ] = Value1 - 1 ;
- end ;
-
-
- Value1 = Sort2DArray( arr0, 2, Len, HiLo ) ;
- oExtremeVal = arr0[ 1, N ] ;
- oExtremeBar = arr0[ 2, N ] + ExecOffset ;
- NthExtremes = 1 ;
- end ;
复制代码 |
论坛官方微信、群(期货热点、量化探讨、开户与绑定实盘)
|