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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
/*
* Qtstalker stock charter
*
* Copyright (C) 2001-2004 Stefan S. Stratigakos
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#include "SD.h"
#include <math.h>
#include "PrefDialog.h"
#include <qdict.h>
SD::SD ()
{
pluginName = "SD";
plotFlag = FALSE;
alertFlag = FALSE;
setDefaults();
}
SD::~SD ()
{
}
void SD::setDefaults ()
{
color.setNamedColor("red");
lineType = PlotLine::Line;
label = pluginName;
period = 21;
input = BarData::Close;
}
void SD::calculate ()
{
QSMath *t = new QSMath();
PlotLine *in = data->getInput(input);
PlotLine *sd = t->getSD(in, period);
sd->setColor(color);
sd->setType(lineType);
sd->setLabel(label);
output.append(sd);
delete in;
delete t;
}
int SD::indicatorPrefDialog ()
{
PrefDialog *dialog = new PrefDialog();
dialog->setCaption(tr("SD Indicator"));
dialog->createPage (tr("Parms"));
dialog->addColorItem(tr("Color"), tr("Parms"), color);
dialog->addComboItem(tr("Line Type"), tr("Parms"), lineTypes, lineType);
dialog->addTextItem(tr("Label"), tr("Parms"), label);
dialog->addIntItem(tr("Period"), tr("Parms"), period, 1, 99999999);
dialog->addComboItem(tr("Input"), tr("Parms"), inputTypeList, input);
int rc = dialog->exec();
if (rc == QDialog::Accepted)
{
color = dialog->getColor(tr("Color"));
lineType = (PlotLine::LineType) dialog->getComboIndex(tr("Line Type"));
period = dialog->getInt(tr("Period"));
label = dialog->getText(tr("Label"));
input = (BarData::InputType) dialog->getComboIndex(tr("Input"));
rc = TRUE;
}
else
rc = FALSE;
delete dialog;
return rc;
}
void SD::loadIndicatorSettings (QString file)
{
setDefaults();
QDict<QString> dict = loadFile(file);
if (! dict.count())
return;
QString *s = dict["color"];
if (s)
color.setNamedColor(s->left(s->length()));
s = dict["lineType"];
if (s)
lineType = (PlotLine::LineType) s->left(s->length()).toInt();
s = dict["period"];
if (s)
period = s->left(s->length()).toInt();
s = dict["label"];
if (s)
label = s->left(s->length());
s = dict["input"];
if (s)
input = (BarData::InputType) s->left(s->length()).toInt();
}
void SD::saveIndicatorSettings (QString file)
{
QDict<QString>dict;
dict.setAutoDelete(TRUE);
dict.replace("color", new QString(color.name()));
dict.replace("lineType", new QString(QString::number(lineType)));
dict.replace("period", new QString(QString::number(period)));
dict.replace("label", new QString(label));
dict.replace("input", new QString(QString::number(input)));
dict.replace("plugin", new QString(pluginName));
saveFile(file, dict);
}
Plugin * create ()
{
SD *o = new SD;
return ((Plugin *) o);
}
|