- UID
- 2
- 积分
- 2874604
- 威望
- 1387331 布
- 龙e币
- 1487273 刀
- 在线时间
- 13155 小时
- 注册时间
- 2009-12-3
- 最后登录
- 2024-11-24
|
【Stochastic Fast】
- inputs:
- PriceH( High ),
- PriceL( Low ),
- PriceC( Close ),
- StochLength( 14 ),
- SmoothingLength1( 3 ),
- SmoothingLength2( 3 ),
- SmoothingType( 1 ),
- OverSold( 20 ),
- OverBought( 80 ) ;
- variables:
- var0( 0 ),
- var1( 0 ),
- var2( 0 ),
- var3( 0 ) ;
- Value1 = Stochastic( PriceH, PriceL, PriceC, StochLength, SmoothingLength1,
- SmoothingLength2, SmoothingType, var0, var1, var2, var3 ) ;
- Plot1( var0, "FastK" ) ;
- Plot2( var1, "FastD") ;
- Plot3( OverBought, "OverBot" ) ;
- Plot4( OverSold, "OverSld" ) ;
- condition1 = var1 crosses over OverSold ;
- if condition1 then
- Alert( "FastD exiting oversold zone" )
- else
- begin
- condition1 = var1 crosses under OverBought ;
- if condition1 then
- Alert( "FastD exiting overbought zone" ) ;
- end;
复制代码 |
论坛官方微信、群(期货热点、量化探讨、开户与绑定实盘)
|