Search Engine
Here you can search through the pages of this Namespace, their attachments and the files uploaded to the system.
Note: the results will only display the items you have permissions to read.
This search, performed through 3.85 MB (775 documents, 11907 words), completed in 0.0 seconds and yielded 1 results.
[...] Factor",4,1,5,0.5); }
protected override void Execute()
{
int period = vmPeriod.ValueInt;
int xBar = 0; // Crossing bar or stop bar
bool bull = false;
double triggerPrice = -1d;
double stopPrice = -1d;
DataSeries vmPlus = VMPlus.Series(Bars ,period);
DataSeries vmMinus = VMMinus.Series(Bars ,period);
DataSeries atr = atrFactor.Value * ATR.Series(Bars, 10);
ChartPane paneVM = CreatePane(40,true,true);
PlotSeries(paneVM, vmPlus, Color.Blue, LineStyle.Solid, 2);
PlotSeries(paneVM, vmMinus, Color.Red, LineStyle.Solid, [...]