- UID
- 2
- 积分
- 2874674
- 威望
- 1387366 布
- 龙e币
- 1487308 刀
- 在线时间
- 13156 小时
- 注册时间
- 2009-12-3
- 最后登录
- 2024-11-24
|
【Impl Volty- 1 Option】
- inputs:
- ExpMonth( 0 ),
- ExpYear( 0 ),
- StrPrice( 0 ),
- Rate100( 0 ),
- OptMktVal( Close data2 ),
- PutCall( Put ),
- AssetPr( Close data1 ),
- AlertLength( 14 ) ;
- variables:
- var0( 0 ) ;
- var0 = ImpliedVolatility(
- ExpMonth,
- ExpYear,
- StrPrice,
- Rate100,
- OptMktVal,
- PutCall,
- AssetPr ) ;
- Plot1( var0, "IV-1" ) ;
- condition1 = HighestBar( var0, AlertLength ) = 0 ;
- if condition1 then
- Alert( "Indicator at new high" )
- else
- begin
- condition1 = LowestBar( var0, AlertLength ) = 0 ;
- if condition1 then
- Alert( "Indicator at new low" ) ;
- end;
复制代码 |
论坛官方微信、群(期货热点、量化探讨、开户与绑定实盘)
|