├── README.md └── Y_KLine-master ├── .gitignore ├── BTC-Kline.xcodeproj └── project.pbxproj ├── BTC-Kline ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ └── UIKit+AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFAutoPurgingImageCache.m │ │ ├── AFImageDownloader.h │ │ ├── AFImageDownloader.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── BTC_K线图 │ ├── Config │ │ ├── Category │ │ │ ├── CAShapeLayer+YKCandleLayer.h │ │ │ ├── CAShapeLayer+YKCandleLayer.m │ │ │ ├── CAShapeLayer+YKLineLayer.h │ │ │ ├── CAShapeLayer+YKLineLayer.m │ │ │ ├── CATextLayer+DateTextLayer.h │ │ │ ├── CATextLayer+DateTextLayer.m │ │ │ ├── UIBezierPath+YKBezierPath.h │ │ │ └── UIBezierPath+YKBezierPath.m │ │ ├── Constant │ │ │ └── Y_StockChartConstant.h │ │ ├── GlobalVariable │ │ │ ├── Y_StockChartGlobalVariable.h │ │ │ └── Y_StockChartGlobalVariable.m │ │ └── Theme │ │ │ ├── UIColor+Y_StockChart.h │ │ │ └── UIColor+Y_StockChart.m │ ├── KLine │ │ ├── AccessoryView │ │ │ ├── Y_KLineAccessoryView.h │ │ │ └── Y_KLineAccessoryView.m │ │ ├── Accessory_MAView │ │ │ ├── Y_AccessoryMAView.h │ │ │ └── Y_AccessoryMAView.m │ │ ├── KLine_MAView │ │ │ ├── Y_KLineMAView.h │ │ │ └── Y_KLineMAView.m │ │ ├── MainKLineView │ │ │ ├── Y_KLineMainView.h │ │ │ └── Y_KLineMainView.m │ │ ├── Model │ │ │ └── KLineModel │ │ │ │ ├── Y_KLineGroupModel.h │ │ │ │ ├── Y_KLineGroupModel.m │ │ │ │ ├── Y_KLineModel.h │ │ │ │ ├── Y_KLineModel.m │ │ │ │ ├── Y_KLinePositionModel.h │ │ │ │ ├── Y_KLinePositionModel.m │ │ │ │ ├── Y_KLineVolumePositionModel.h │ │ │ │ └── Y_KLineVolumePositionModel.m │ │ ├── PriceView │ │ │ ├── Y_StockChartRightYView.h │ │ │ └── Y_StockChartRightYView.m │ │ ├── SegmentView │ │ │ ├── Y_StockChartSegmentView.h │ │ │ └── Y_StockChartSegmentView.m │ │ ├── VolumeView │ │ │ ├── Y_KLineVolumeView.h │ │ │ └── Y_KLineVolumeView.m │ │ ├── Volume_MAView │ │ │ ├── Y_VolumeMAView.h │ │ │ └── Y_VolumeMAView.m │ │ ├── Y_KLineView.h │ │ └── Y_KLineView.m │ ├── Y_StockChartView.h │ └── Y_StockChartView.m ├── Masonry │ ├── Info.plist │ ├── MASCompositeConstraint.h │ ├── MASCompositeConstraint.m │ ├── MASConstraint+Private.h │ ├── MASConstraint.h │ ├── MASConstraint.m │ ├── MASConstraintMaker.h │ ├── MASConstraintMaker.m │ ├── MASLayoutConstraint.h │ ├── MASLayoutConstraint.m │ ├── MASUtilities.h │ ├── MASViewAttribute.h │ ├── MASViewAttribute.m │ ├── MASViewConstraint.h │ ├── MASViewConstraint.m │ ├── Masonry.h │ ├── NSArray+MASAdditions.h │ ├── NSArray+MASAdditions.m │ ├── NSArray+MASShorthandAdditions.h │ ├── NSLayoutConstraint+MASDebugAdditions.h │ ├── NSLayoutConstraint+MASDebugAdditions.m │ ├── View+MASAdditions.h │ ├── View+MASAdditions.m │ ├── View+MASShorthandAdditions.h │ ├── ViewController+MASAdditions.h │ └── ViewController+MASAdditions.m ├── NetWorking │ ├── NetWorking.h │ └── NetWorking.m ├── Supporting Files │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── main.m ├── ViewController.h ├── ViewController.m ├── Y_StockChartViewController.h └── Y_StockChartViewController.m ├── LICENSE ├── README.md └── 资料 ├── KDJ介绍.md ├── MA-EMA-MACD介绍.md ├── README.md └── 指标公式.md /README.md: -------------------------------------------------------------------------------- 1 | # KLine 2 | 区块链交易所K线 3 | 4 | 在Y_KLine的基础上做了性能优化,使用了CAShapeLayer进行了重新绘制,目前日期显示上还存在问题 5 | -------------------------------------------------------------------------------- /Y_KLine-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/.gitignore -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CAShapeLayer+YKCandleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CAShapeLayer+YKCandleLayer.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CAShapeLayer+YKCandleLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CAShapeLayer+YKCandleLayer.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CAShapeLayer+YKLineLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CAShapeLayer+YKLineLayer.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CAShapeLayer+YKLineLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CAShapeLayer+YKLineLayer.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CATextLayer+DateTextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CATextLayer+DateTextLayer.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CATextLayer+DateTextLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/CATextLayer+DateTextLayer.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/UIBezierPath+YKBezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/UIBezierPath+YKBezierPath.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/UIBezierPath+YKBezierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Category/UIBezierPath+YKBezierPath.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Constant/Y_StockChartConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Constant/Y_StockChartConstant.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/GlobalVariable/Y_StockChartGlobalVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/GlobalVariable/Y_StockChartGlobalVariable.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/GlobalVariable/Y_StockChartGlobalVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/GlobalVariable/Y_StockChartGlobalVariable.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Theme/UIColor+Y_StockChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Theme/UIColor+Y_StockChart.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Config/Theme/UIColor+Y_StockChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Config/Theme/UIColor+Y_StockChart.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/AccessoryView/Y_KLineAccessoryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/AccessoryView/Y_KLineAccessoryView.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/AccessoryView/Y_KLineAccessoryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/AccessoryView/Y_KLineAccessoryView.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Accessory_MAView/Y_AccessoryMAView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Accessory_MAView/Y_AccessoryMAView.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Accessory_MAView/Y_AccessoryMAView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Accessory_MAView/Y_AccessoryMAView.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/KLine_MAView/Y_KLineMAView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/KLine_MAView/Y_KLineMAView.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/KLine_MAView/Y_KLineMAView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/KLine_MAView/Y_KLineMAView.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/MainKLineView/Y_KLineMainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/MainKLineView/Y_KLineMainView.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/MainKLineView/Y_KLineMainView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/MainKLineView/Y_KLineMainView.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineGroupModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineGroupModel.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineGroupModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineGroupModel.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineModel.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineModel.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLinePositionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLinePositionModel.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLinePositionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLinePositionModel.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineVolumePositionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineVolumePositionModel.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineVolumePositionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Model/KLineModel/Y_KLineVolumePositionModel.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/PriceView/Y_StockChartRightYView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/PriceView/Y_StockChartRightYView.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/PriceView/Y_StockChartRightYView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/PriceView/Y_StockChartRightYView.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/SegmentView/Y_StockChartSegmentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/SegmentView/Y_StockChartSegmentView.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/SegmentView/Y_StockChartSegmentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/SegmentView/Y_StockChartSegmentView.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/VolumeView/Y_KLineVolumeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/VolumeView/Y_KLineVolumeView.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/VolumeView/Y_KLineVolumeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/VolumeView/Y_KLineVolumeView.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Volume_MAView/Y_VolumeMAView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Volume_MAView/Y_VolumeMAView.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Volume_MAView/Y_VolumeMAView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Volume_MAView/Y_VolumeMAView.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Y_KLineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Y_KLineView.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Y_KLineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/KLine/Y_KLineView.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Y_StockChartView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Y_StockChartView.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/BTC_K线图/Y_StockChartView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/BTC_K线图/Y_StockChartView.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/Info.plist -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/Masonry.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/NetWorking/NetWorking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/NetWorking/NetWorking.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/NetWorking/NetWorking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/NetWorking/NetWorking.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Supporting Files/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Supporting Files/AppDelegate.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Supporting Files/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Supporting Files/AppDelegate.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Supporting Files/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Supporting Files/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Supporting Files/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Supporting Files/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Supporting Files/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Supporting Files/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Supporting Files/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Supporting Files/main.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/ViewController.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/ViewController.m -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Y_StockChartViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Y_StockChartViewController.h -------------------------------------------------------------------------------- /Y_KLine-master/BTC-Kline/Y_StockChartViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/BTC-Kline/Y_StockChartViewController.m -------------------------------------------------------------------------------- /Y_KLine-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/LICENSE -------------------------------------------------------------------------------- /Y_KLine-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/README.md -------------------------------------------------------------------------------- /Y_KLine-master/资料/KDJ介绍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/资料/KDJ介绍.md -------------------------------------------------------------------------------- /Y_KLine-master/资料/MA-EMA-MACD介绍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/资料/MA-EMA-MACD介绍.md -------------------------------------------------------------------------------- /Y_KLine-master/资料/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/资料/README.md -------------------------------------------------------------------------------- /Y_KLine-master/资料/指标公式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sany620/KLine/HEAD/Y_KLine-master/资料/指标公式.md --------------------------------------------------------------------------------