-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathChartRealTimeModel.cpp
73 lines (61 loc) · 2.59 KB
/
ChartRealTimeModel.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/************************************************************************
* Copyright(c) 2013, One Unified. All rights reserved. *
* email: [email protected] *
* *
* This file is provided as is WITHOUT ANY WARRANTY *
* without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
* This software may not be used nor distributed without proper license *
* agreement. *
* *
* See the file LICENSE.txt for redistribution information. *
************************************************************************/
//#include "StdAfx.h"
#include "ChartRealTimeModel.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//
// CChartRealTimeModel
//
// OnDataChanged( this ); might be called way too often
CChartRealTimeModel::CChartRealTimeModel(void) {
m_ceAsks.Reserve( 50000 );
m_ceBids.Reserve( 50000 );
m_ceTrades.Reserve( 50000 );
m_barFactory.SetBarWidth( 6 );
m_barFactory.SetOnNewBarStarted( MakeDelegate( this, &CChartRealTimeModel::HandleNewBarStarted ) );
m_barFactory.SetOnBarUpdated( MakeDelegate( this, &CChartRealTimeModel::HandleBarUpdated ) );
m_barFactory.SetOnBarComplete( MakeDelegate( this, &CChartRealTimeModel::HandleBarCompleted ) );
}
CChartRealTimeModel::~CChartRealTimeModel(void) {
}
void CChartRealTimeModel::AddQuote(const CQuote "e) {
m_vQuotes.push_back( quote );
m_ceAsks.Add( quote.m_dt, quote.m_dblAsk );
m_ceBids.Add( quote.m_dt, quote.m_dblBid );
m_ceSpreadMidPoint.Add( quote.m_dt, ( quote.m_dblAsk + quote.m_dblBid ) / 2 );
OnQuote( this );
}
void CChartRealTimeModel::AddTrade(const CTrade &trade) {
m_ceTrades.Add( trade.m_dt, trade.m_dblTrade );
m_vTrades.push_back( trade );
m_barFactory.Add( trade );
OnTrade( this );
}
void CChartRealTimeModel::HandleNewBarStarted(const CBar &bar) {
m_barUpdating = bar;
OnBarStarted( this );
}
void CChartRealTimeModel::HandleBarUpdated(const CBar &bar) {
m_barUpdating = bar;
OnBarUpdated( this );
}
void CChartRealTimeModel::HandleBarCompleted(const CBar &bar) {
m_vBars.push_back( bar );
m_ceBars.AddBar( bar );
OnBarComplete( this );
}