2011-06-26 08:30:44 +00:00
|
|
|
/********************************************************************
|
|
|
|
gCandleStick Graph Header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#ifndef GCANDLESTICK_H
|
|
|
|
#define GCANDLESTICK_H
|
|
|
|
|
|
|
|
#include "graphlayer.h"
|
|
|
|
|
|
|
|
class gCandleStick:public gLayer
|
|
|
|
{
|
|
|
|
public:
|
2011-07-27 09:21:53 +00:00
|
|
|
gCandleStick(MachineCode code=MC_UNKNOWN,Qt::Orientation o=Qt::Horizontal);
|
2011-06-26 08:30:44 +00:00
|
|
|
virtual ~gCandleStick();
|
|
|
|
|
|
|
|
virtual void Plot(gGraphWindow & w,float scrx,float scry);
|
|
|
|
void AddName(QString name) { m_names.push_back(name); };
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Qt::Orientation m_orientation;
|
|
|
|
vector<QString> m_names;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // GCANDLESTICK_H
|