为啥期货的OBV值都是 负数?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥期货的OBV值都是 负数?相关的知识,希望对你有一定的参考价值。
(1)OBV线从正的累积数转为负数时,为下跌趋势,应该卖出合约。(2)能量潮(OBV)一般来说,只是观察OBV的升降并无多大意义,必须配合K线图的走势才有实际的效用。
(3)OBV线最大的用处,在于观察合约价格盘局整理后,何时会脱离盘局以及突破后的未来走势,OBV线变动方向是重要参考指数,其具体的数值并无实际意义。 参考技术A 因为有做空机制,A股就没有负数。 参考技术B OBV线从正的累积数转为负数时,为下跌趋势,应该卖出持有股票。反之,OBV线从负的累积数转为正数时,应该买进股票。
OBV是指平衡交易量,是由美国的投资分析家Joe Granville所创。该指标通过统计成交量变动的趋势来推测股价趋势。OBV以“N”字型为波动单位,并且由许许多多“N”型波构成了OBV的曲线图,对一浪高于一浪的“N”型波,称其为“上升潮”,至于上升潮中的下跌回落则称为“跌潮”。
经度和纬度值都是 0.000000 ,为啥?
【中文标题】经度和纬度值都是 0.000000 ,为啥?【英文标题】:longitude and latitude values are both 0.000000 , why?经度和纬度值都是 0.000000 ,为什么? 【发布时间】:2011-04-29 22:29:09 【问题描述】:我使用核心位置来获取我当前位置的经度和纬度值,并将其显示在标签中,所以对于我来说,经度和纬度始终为 0.000000,是因为我在模拟器上工作吗?
//longitude and latitude
// locationManager update as location
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
locationManager.distanceFilter = kCLDistanceFilterNone;
[locationManager startUpdatingLocation];
CLLocation *location = [locationManager location];
// Configure the new event with information from the location
CLLocationCoordinate2D coordinate = [location coordinate];
NSString *latitude = [NSString stringWithFormat:@"%f", coordinate.latitude];
NSString *longitude = [NSString stringWithFormat:@"%f", coordinate.longitude];
【问题讨论】:
你在加纳海岸附近的船上吗? 【参考方案1】:仅初始化位置管理器不会获取您的值。
你必须写这个
[self.locationManager startUpdatingLocation];
那么你必须重写一个回调方法
- (void) locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *) newLocation
fromLocation: (CLLocation *) oldLocation
[self.locationManager stopUpdatingLocation];
NSString *latitude = [NSString stringWithFormat:@"%f", newLocation.latitude];
NSString *longitude = [NSString stringWithFormat:@"%f", newLocation.longitude];
[self.locationManager release];
希望有帮助!
舒纳克【讨论】:
嗨,这对我没有帮助,标签中显示了相同的值:((【参考方案2】:没有。 iPhone 模拟器上的 CoreLocation 固定在 37.3317 North,122.0307 West(Apple HQ)。
尝试将您的 locationManager 代码从带有标签的代码中移开。将位置管理器代码放在viewDidLoad之类的里面然后把这段代码放上去
CLLocation *location = [locationManager location];
// Configure the new event with information from the location
CLLocationCoordinate2D coordinate = [location coordinate];
NSString *latitude = [NSString stringWithFormat:@"%f", coordinate.latitude];
NSString *longitude = [NSString stringWithFormat:@"%f", coordinate.longitude];
在您从按钮调用的函数中。 CoreLocation 需要时间来让自己运转起来。在设备上确实如此,但在模拟器上也许也是如此。
【讨论】:
以上是关于为啥期货的OBV值都是 负数?的主要内容,如果未能解决你的问题,请参考以下文章