freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

汽車信息化及股票證券管理知識分析(編輯修改稿)

2025-07-21 02:14 本頁面
 

【文章內(nèi)容簡介】 public string m_strNDMGSY 。 //年度每股收益,可用于計算市盈率 public string m_strHighStopPrice 。 //漲停價 public string m_strLowStopPrice 。 //跌停價 public string m_str52WeekLowPrice 。 //52周最低價 public string m_str52WeekHighPrice 。 //52周最高價 }獲取明細的最后幾條數(shù)據(jù)public tickData[] getTickData(string StockCode , int Market , int iMaxLength)參數(shù)說明:StockCode 商品代碼 Market 市場 iMaxLength 最多返回多少條,1 表示返回所有的明細(不推薦如此使用,會大量增加流量)返回值: public class tickData { public uint Time 。 //時間,HH*60+MM public string Price 。 //成交價格 public string Volume 。 //成交量 public string PBuy 。 //委買價格 public string PSell 。 //委賣價格 }能夠返回多少條,以實際返回的數(shù)組長度為準,反序返回,即最新的成交明細在前獲取商品即時走勢圖。(gif格式圖)public byte[] getStockDynPic(string StockCode , int Market , int Width , int Height)參數(shù)說明:StockCode 商品代碼 Market 市場 , Width 圖片寬度[1502000]之間 Height[1002000]之間返回值:gif圖片流的字符數(shù)組,調(diào)用端只需要把該byte[]直接二進制Response到瀏覽器,并注明Content為 image/gif 即可,無匹配的商品,byte[]返回為null、獲取商品即時走勢圖,可疊加另一只股票。(gif格式圖)public byte[] getStockDynPicEx(string StockCode , int Market , string AdditionalStockCode , int AdditionalMarket , int Width , int Height)參數(shù)說明:StockCode 商品代碼 Market 市場 , Width 圖片寬度[1502000]之間 Height[1002000]之間返回值:gif圖片流的字符數(shù)組,調(diào)用端只需要把該byte[]直接二進制Response到瀏覽器,并注明Content為 image/gif 即可,無匹配的商品,byte[]返回為null、獲取商品的走勢數(shù)據(jù)內(nèi)容。(20071119增加接口)public SOAPStockTrendReturn getStockTrendData(string StockCode , int Market)參數(shù)說明:StockCode 商品代碼 Market 市場返回值: //股票走勢數(shù)據(jù)的返回結果類 public class SOAPStockTrendReturn { public byte Status 。 // 0 表示未查詢到商品信息 1 表示查詢到有商品的信息內(nèi)容 public string StockName 。 // 股票名稱 public string StockCode 。 // 股票代碼 public int StockMarket 。 // 股票所在市場 public int iStockGroup 。 // 股票所在的系統(tǒng)板塊編號 public string StockGroupName 。 // 股票所在的系統(tǒng)板塊名稱 public uint StockAttributes 。 // 股票的顯示特征屬性 目前:( amp。 0x20)!=0 表示需要ETF需要顯示IOPV線 public int PriceRate 。 // 價格放大倍率 public int TradeUnit 。 // 每手股數(shù) public int DeciNum 。 // 股價顯示的小數(shù)位數(shù) public string DateTimeStr 。 // 時間日期字符串 public stkCommDetailDynDataEx pDynObj 。 // 動態(tài)數(shù)據(jù)的信息集合 public int TrendDataItemCount 。 // 走勢數(shù)據(jù)的返回條數(shù) public SOAPOneTrendData[] TrendItems 。 // 走勢數(shù)據(jù)內(nèi)容 } // 一條走勢線的數(shù)據(jù) public class SOAPOneTrendData { public uint NowPrice 。 // 現(xiàn)價,需要除以PriceRate public ushort Time 。 // 時間 HH*60+MM public double Volume 。 // 總成交量(單位:股) public double Amount 。 // 總成交金額(單位:元) public double TotalBidVolume 。 // 總委買量(指數(shù)有效),單位:股 public double TotalAskVolume 。 // 總委賣量(指數(shù)有效) public int JjJz 。 // 基金凈值(ETF的IOPV線,價格*PriceRate),如果為綜指,表示SEC5(非加權平均值) } public class stkCommDetailDynDataEx { public byte m_btSpFlag 。//一些控制標示 , 目前 0x01位(是否有效商品) , 0x02位(1 普通商品,0 指數(shù)) public string m_strCode 。//商品代碼 public string m_strName 。//商品名稱 public string m_strClose 。//商品昨收 public string m_strOpen 。 //商品今開 public string m_strNowPrice 。//現(xiàn)價 public string m_strHighPrice 。//最高價 public string m_strLowPrice 。//最低價 public string m_strVolume 。//成交量,單位 股 public string m_strAmount 。//成交金額,單位 元(港幣) public string m_strLastVolume 。//現(xiàn)量 public string m_strRiseFallPrice 。//上漲下跌價格 public string m_strRiseFallRate 。//上漲下跌比率 *100 , 單位 % public string m_strDataNowTime 。//數(shù)據(jù)的時間 public string m_strAvgPrice=。 //均價 public string m_strQRR = 。//量比QuantityRelativeRatio public string m_strShiYing = 。//市盈率 public string m_strWeiBi = 。//委比 public string[] m_strBidPrice 。//五檔買盤價格 public string[] m_strBidVolume 。//五檔買盤量 public string[] m_strAskPrice 。//五檔賣盤價 public string[] m_strAskVolume 。//五檔賣盤量 //===一下五個成員變量屬于新增加的內(nèi)容 public string m_strOtherInfo1 。 //附加信息一 public string m_strOtherInfo2 。 //附加信息二 public string m_strAllBidVolume 。//內(nèi)盤 public string m_strAllAskVolume 。//外盤 public int m_iGroup 。 }獲取商品的K線圖。public byte[] getStockTechPic(string StockCode , int Market , int Width , int Height , int Cycle)參數(shù)說明:StockCode 商品代碼 Market 市場 Width 圖片寬度[1502000]之間 Height[1002000]之間Cycle K線圖的周期 季線(1),月線(2),周線(3),日線(4),五分鐘線(5),15分鐘線(6),30分鐘線(7),60分鐘線(8),120分鐘線(9)返回值: gif圖片流的字符數(shù)組,調(diào)用端只需要把該byte[]直接二進制Response到瀏覽器,并注明Content為 image/gif 即可,無匹配的商品,byte[]返回為null、獲取商品的K線圖(增強型函數(shù))public byte[] getStockTechPicEx(string StockCode , int Market , int Width , int Height , int Cycle , int WeightType ,int iMinItems , int KType , string plusStockCode , int plusStockMarket )參數(shù)說明:StockCode 商品代碼 Market 市場 Width 圖片寬度[1502000]之間 Height[1002000]之間Cycle K線圖的周期 季線(1),月線(2),周線(3),日線(4),五分鐘線(5),15分鐘線(6),30分鐘線(7),60分鐘線(8),120分鐘線(9)WeightType 除權模式 0 不除權 1 前復權IMinItems 需要顯示多少根K線,如果是30的整數(shù)倍表示多少個月,如果要顯示一年K線,則填入360。實際顯示情形,將與Width有關,因為必須確保一根K線占到一個象素位置。Ktype K線形態(tài) 0蠟燭線(普通K線),1美國線,2 收盤價線(暫不支持)PlusStockCode 需要疊加的商品代碼(暫不支持)PlusStockMarket 需要疊加的商品市場(暫不支持)返回值:同上獲取商品的技術指標圖public byte[] getStockTechIdxPic(string StockCode , int Market , int Width , int Height , int Cycle , string idxName)參數(shù)說明:StockCode 商品代碼 Market 市場 Width 圖片寬度[1502000]之間 Height[1002000]之間Cycle K線圖的周期 季線(1),月線(2),周線(3),日線(4),五分鐘線(5),15分鐘線(6),30分鐘線(7),60分鐘線(8),120分鐘線(9)idxName 技術指標名稱,可填入MACD,KDJ,WR,RSI,QIAN,LON,SHORT,BOLL,EXPMA,SAR中的任一,共支持10個指標返回值: gif圖片流的字符數(shù)組,調(diào)用端只需要把該byte[]直接二進制Response到瀏覽器,并注明Content為 image/gif 即可,無匹配的商品,byte[]返回為null、獲取商品的技術指標圖(增強型)public byte[] getStockTechIdxPicEx(string StockCode , int Market , int Width , int Height , int Cycle , int WeightType , string idxName , int iMinItems)參數(shù)說明:StockCode 商品代碼 Market 市場 Width 圖片寬度[1502000]之間 Height[1002000]之間Cycle K線圖的周期 季線(1),月線(2),周線(3),日線(4),五分鐘線(5),15分鐘線(6),30分鐘線(7),60分鐘線(8),120分鐘線(9)idxName 技術指標名稱,可填入MACD,KDJ,WR,RSI,QIAN,LON,SHORT,BOLL,EXPMA,SAR中的任一,共支持10個指標WeightType 除權模式 0 不除權 1 前復權IMinI
點擊復制文檔內(nèi)容
語文相關推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1