namespace AIStrategyWindow
{
partial class AIStrategyGrid
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.viewStrategyTradesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.viewAllTradesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.viewOpenTradesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.viewClosedTradesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.duplicateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showStrategyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showPLGraphToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.debugToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.debugMightMouseOpenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mightyMouseToolStripItem = new System.Windows.Forms.ToolStripMenuItem();
this.pinnedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.columnsStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.saveAsDefaultToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.segmentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.symbolLinkingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// dataGridView1
//
this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.ContextMenuStrip = this.contextMenuStrip1;
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView1.Location = new System.Drawing.Point(0, 0);
this.dataGridView1.Margin = new System.Windows.Forms.Padding(0);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.Size = new System.Drawing.Size(490, 178);
this.dataGridView1.TabIndex = 0;
this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
this.dataGridView1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellDoubleClick);
this.dataGridView1.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_CellMouseDown);
this.dataGridView1.CellMouseEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellMouseEnter);
this.dataGridView1.CellMouseLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellMouseLeave);
this.dataGridView1.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.dataGridView1_DataBindingComplete);
this.dataGridView1.Click += new System.EventHandler(this.dataGridView1_Click);
this.dataGridView1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.dataGridView1_MouseUp);
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.viewStrategyTradesToolStripMenuItem,
this.viewAllTradesToolStripMenuItem,
this.viewOpenTradesToolStripMenuItem,
this.viewClosedTradesToolStripMenuItem,
this.toolStripSeparator1,
this.symbolLinkingToolStripMenuItem,
this.duplicateToolStripMenuItem,
this.showStrategyToolStripMenuItem,
this.showPLGraphToolStripMenuItem,
this.debugToolStripMenuItem,
this.debugMightMouseOpenToolStripMenuItem,
this.mightyMouseToolStripItem,
this.pinnedToolStripMenuItem,
this.toolStripSeparator2,
this.columnsStripMenuItem,
this.toolStripSeparator3,
this.saveAsDefaultToolStripMenuItem,
this.segmentsToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(224, 374);
this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
//
// viewStrategyTradesToolStripMenuItem
//
this.viewStrategyTradesToolStripMenuItem.Name = "viewStrategyTradesToolStripMenuItem";
this.viewStrategyTradesToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.viewStrategyTradesToolStripMenuItem.Text = "View Trades for This Strategy";
this.viewStrategyTradesToolStripMenuItem.Click += new System.EventHandler(this.viewStrategyTradesToolStripMenuItem_Click);
//
// viewAllTradesToolStripMenuItem
//
this.viewAllTradesToolStripMenuItem.Name = "viewAllTradesToolStripMenuItem";
this.viewAllTradesToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.viewAllTradesToolStripMenuItem.Text = "View All Trades";
this.viewAllTradesToolStripMenuItem.Click += new System.EventHandler(this.viewAllTradesToolStripMenuItem_Click);
//
// viewOpenTradesToolStripMenuItem
//
this.viewOpenTradesToolStripMenuItem.Name = "viewOpenTradesToolStripMenuItem";
this.viewOpenTradesToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.viewOpenTradesToolStripMenuItem.Text = "View Open Trades";
this.viewOpenTradesToolStripMenuItem.Click += new System.EventHandler(this.viewOpenTradesToolStripMenuItem_Click);
//
// viewClosedTradesToolStripMenuItem
//
this.viewClosedTradesToolStripMenuItem.Name = "viewClosedTradesToolStripMenuItem";
this.viewClosedTradesToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.viewClosedTradesToolStripMenuItem.Text = "View Closed Trades";
this.viewClosedTradesToolStripMenuItem.Click += new System.EventHandler(this.viewClosedTradesToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(220, 6);
//
// duplicateToolStripMenuItem
//
this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem";
this.duplicateToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.duplicateToolStripMenuItem.Text = "Duplicate";
this.duplicateToolStripMenuItem.Click += new System.EventHandler(this.duplicateToolStripMenuItem_Click);
//
// showStrategyToolStripMenuItem
//
this.showStrategyToolStripMenuItem.CheckOnClick = true;
this.showStrategyToolStripMenuItem.Name = "showStrategyToolStripMenuItem";
this.showStrategyToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.showStrategyToolStripMenuItem.Text = "Show Strategy Menu";
this.showStrategyToolStripMenuItem.Click += new System.EventHandler(this.showStrategyToolStripMenuItem_Click);
//
// showPLGraphToolStripMenuItem
//
this.showPLGraphToolStripMenuItem.CheckOnClick = true;
this.showPLGraphToolStripMenuItem.Name = "showPLGraphToolStripMenuItem";
this.showPLGraphToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.showPLGraphToolStripMenuItem.Text = "Show Profit && Loss Graph";
this.showPLGraphToolStripMenuItem.Click += new System.EventHandler(this.showPLGraphToolStripMenuItem_Click);
//
// debugToolStripMenuItem
//
this.debugToolStripMenuItem.Name = "debugToolStripMenuItem";
this.debugToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.debugToolStripMenuItem.Text = "Debug Update";
this.debugToolStripMenuItem.Visible = false;
this.debugToolStripMenuItem.Click += new System.EventHandler(this.debugToolStripMenuItem_Click);
//
// debugMightMouseOpenToolStripMenuItem
//
this.debugMightMouseOpenToolStripMenuItem.Name = "debugMightMouseOpenToolStripMenuItem";
this.debugMightMouseOpenToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.debugMightMouseOpenToolStripMenuItem.Text = "Debug Open Position";
this.debugMightMouseOpenToolStripMenuItem.Visible = false;
this.debugMightMouseOpenToolStripMenuItem.Click += new System.EventHandler(this.debugMightMouseOpenToolStripMenuItem_Click);
//
// mightyMouseToolStripItem
//
this.mightyMouseToolStripItem.Name = "mightyMouseToolStripItem";
this.mightyMouseToolStripItem.Size = new System.Drawing.Size(223, 22);
this.mightyMouseToolStripItem.Text = "Debug Closed Position";
this.mightyMouseToolStripItem.Visible = false;
this.mightyMouseToolStripItem.Click += new System.EventHandler(this.mightyMouseToolStripItem_Click);
//
// pinnedToolStripMenuItem
//
this.pinnedToolStripMenuItem.CheckOnClick = true;
this.pinnedToolStripMenuItem.Name = "pinnedToolStripMenuItem";
this.pinnedToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.pinnedToolStripMenuItem.Text = "Pinned";
this.pinnedToolStripMenuItem.Click += new System.EventHandler(this.pinnedToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(220, 6);
//
// columnsStripMenuItem
//
this.columnsStripMenuItem.Name = "columnsStripMenuItem";
this.columnsStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.columnsStripMenuItem.Text = "Columns...";
this.columnsStripMenuItem.Click += new System.EventHandler(this.columnsStripMenuItem_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(220, 6);
//
// saveAsDefaultToolStripMenuItem
//
this.saveAsDefaultToolStripMenuItem.Name = "saveAsDefaultToolStripMenuItem";
this.saveAsDefaultToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.saveAsDefaultToolStripMenuItem.Text = "Save as Default";
this.saveAsDefaultToolStripMenuItem.Click += new System.EventHandler(this.saveAsDefaultToolStripMenuItem_Click);
//
// segmentsToolStripMenuItem
//
this.segmentsToolStripMenuItem.Name = "segmentsToolStripMenuItem";
this.segmentsToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.segmentsToolStripMenuItem.Text = "Segments";
//
// symbolLinkingToolStripMenuItem
//
this.symbolLinkingToolStripMenuItem.Name = "symbolLinkingToolStripMenuItem";
this.symbolLinkingToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
this.symbolLinkingToolStripMenuItem.Text = "Symbol Linking";
//
// AIStrategyGrid
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.dataGridView1);
this.Margin = new System.Windows.Forms.Padding(0);
this.Name = "AIStrategyGrid";
this.Size = new System.Drawing.Size(490, 178);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem viewStrategyTradesToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem viewAllTradesToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem pinnedToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem saveAsDefaultToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem showStrategyToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem columnsStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripMenuItem debugToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem mightyMouseToolStripItem;
private System.Windows.Forms.ToolStripMenuItem showPLGraphToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem debugMightMouseOpenToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem viewOpenTradesToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem viewClosedTradesToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem segmentsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem duplicateToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem symbolLinkingToolStripMenuItem;
}
}