本文整理汇总了C++中CStockInfo::SetStockName方法的典型用法代码示例。如果您正苦于以下问题:C++ CStockInfo::SetStockName方法的具体用法?C++ CStockInfo::SetStockName怎么用?C++ CStockInfo::SetStockName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CStockInfo
的用法示例。
在下文中一共展示了CStockInfo::SetStockName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: GetAllDomainInfo
BOOL CDomainContainer::GetAllDomainInfo( CStockContainer * pContainer, DWORD dwDate )
{
SP_ASSERT( pContainer );
if( NULL == pContainer )
return FALSE;
DWORD dwDateLatest = -1;
AfxGetStockContainer().GetLatestTechDate( &dwDateLatest );
for( int nDomain=0; nDomain<GetSize(); nDomain++ )
{
CDomain & domain = ElementAt(nDomain);
CStockContainer cntn;
if( cntn.RetrieveSpecify( domain ) )
{
if( -1 != dwDate && dwDateLatest != dwDate )
{
for( int i=0; i<cntn.GetSize(); i++ )
{
CStockInfo & info = cntn.ElementAt(i);
info.StatBaseIndex( dwDate );
info.StatTechIndex( dwDate );
}
}
// cntn.SetMap( );
cntn.SetAverage( );
CStockInfo info = cntn.GetAverage( );
info.SetStockName( domain.m_strName );
info.SetStockShortName( domain.m_strName );
pContainer->Add( info );
}
}
pContainer->SetMap();
pContainer->SetAverage();
return TRUE;
}
示例2: UpdateStockInfoByREPORT
// update CStockInfo by Report data
BOOL UpdateStockInfoByREPORT( CStockInfo & info, REPORT * pReport )
{
SP_ASSERT( pReport );
if( !pReport )
return FALSE;
// 股票市场
if( strlen(pReport->m_szCode) > 0 )
info.SetStockCode( pReport->m_dwMarket, pReport->m_szCode );
if( strlen(pReport->m_szName) > 0 )
info.SetStockName( pReport->m_szName );
if( info.GetType() == 0 )
{
if( CStock::marketSHSE == pReport->m_dwMarket )
info.SetType( CStock::typeshA );
else if( CStock::marketSZSE == pReport->m_dwMarket )
info.SetType( CStock::typeszA );
else
info.SetType( CStock::typeshA );
}
// 成交买卖价量信息
if( pReport->m_fLast > 1e-4 ) info.m_fLast = pReport->m_fLast;
info.m_fOpen = pReport->m_fOpen;
info.m_fHigh = pReport->m_fHigh;
info.m_fLow = pReport->m_fLow;
info.m_fClose = pReport->m_fNew;
info.m_fVolume = pReport->m_fVolume;
info.m_fAmount = pReport->m_fAmount;
info.m_fBuyPrice[0] = pReport->m_fBuyPrice[0];
info.m_fBuyPrice[1] = pReport->m_fBuyPrice[1];
info.m_fBuyPrice[2] = pReport->m_fBuyPrice[2];
info.m_fBuyPrice[3] = pReport->m_fBuyPrice[3];
info.m_fBuyPrice[4] = pReport->m_fBuyPrice[4];
info.m_fBuyVolume[0] = pReport->m_fBuyVolume[0];
info.m_fBuyVolume[1] = pReport->m_fBuyVolume[1];
info.m_fBuyVolume[2] = pReport->m_fBuyVolume[2];
info.m_fBuyVolume[3] = pReport->m_fBuyVolume[3];
info.m_fBuyVolume[4] = pReport->m_fBuyVolume[4];
info.m_fSellPrice[0] = pReport->m_fSellPrice[0];
info.m_fSellPrice[1] = pReport->m_fSellPrice[1];
info.m_fSellPrice[2] = pReport->m_fSellPrice[2];
info.m_fSellPrice[3] = pReport->m_fSellPrice[3];
info.m_fSellPrice[4] = pReport->m_fSellPrice[4];
info.m_fSellVolume[0] = pReport->m_fSellVolume[0];
info.m_fSellVolume[1] = pReport->m_fSellVolume[1];
info.m_fSellVolume[2] = pReport->m_fSellVolume[2];
info.m_fSellVolume[3] = pReport->m_fSellVolume[3];
info.m_fSellVolume[4] = pReport->m_fSellVolume[4];
// K线数据、日期
KDATA kd;
UpdateKDATAByREPORT( kd, pReport );
int nLen = info.m_kdata.GetSize();
if( nLen > 0 && info.m_kdata.ElementAt(nLen-1).m_date == kd.m_date )
info.m_kdata.SetAt( nLen-1, kd );
else
info.m_kdata.Add( kd );
info.m_datetech = kd.m_date;
// 保存
memcpy( &(info.m_reportLatest), pReport, sizeof(info.m_reportLatest) );
return TRUE;
}