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 5 results.
[...] from the 2 most recent 10% Peaks
bool Detected2Peaks = false;
int bar = Bars.Count-1;
int p2 = -1;
int p1 = (int)PeakBar.Value( bar, Close, 10, PeakTroughMode.Percent );
if( p1 > -1 )
{
p2 = (int)PeakBar.Value( p1, Close, 10, PeakTroughMode.Percent [...]
[...] paramFlagHeight;
private StrategyParameter paramProfitTarget; void DrawRectangle(int b1, int b2, double p1, double p2, Color c)
{
double[] rect = { b1, p1, [...]
[...] = "LeavittConvAcc";
HideVolume();
ChartPane p3 = CreatePane(10,false,false);
ChartPane p2 = CreatePane(30,true,false);
ChartPane p1 = CreatePane(30,true,false);
PlotSeries(p1, LcAcceleration, Color.Blue, LineStyle.Histogram, 5 );
PlotSeries(p2, LeavittConvSlope, Color.Blue, LineStyle.Histogram, 5 );
PlotSeries(p3, LeavittConvAcc, Color.Blue, [...]
[...] between Commercial Long/Short";
if( cl != null && cs != null )
{
ChartPane p2 = CreatePane( 25, true, true );
ChartPane p1 = CreatePane( 25, true, true );
ChartPane p = CreatePane( 25, true, true ); PlotSeries( p, cl, Color.Green, LineStyle.Solid, 1 );
PlotSeries( p, cs, Color.Red, LineStyle.Solid, 1 );
PlotSeries( p1, diff, Color.Blue, LineStyle.Histogram, 2 );
PlotSeriesOscillator( p2, [...]
[...] "\t" + t.LastPrice + "\t" + t.Volume + "\t" + t.OpenInterest + "\t" +
string.Format("Value: {0:P2}.", t.IV / 100d));
}
}
}