I have below Draw.Diamond object when if condition is met. but diamond is too big and need to make this smaller. Any way to make size configurable?
/
if (Close[1] > Close[0]) //example
{
Draw.Diamond(this, @"VnTnD Diamond_1"+ CurrentBar, false, 0, (Low[0] + (-3 * TickSize)) , Brushes.Red);
}
Property region
[NinjaScriptProperty]
[Display(Name = "Diamond Marker Color 6b", Order = 9, GroupName = "Marker Settings")]
public System.Windows.Media.Brush DiamondMarkerColor6b { get; set; }
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name = "Diamond Marker Size", Order = 10, GroupName = "Marker Settings")]
public int DiamondMarkerSize { get; set; }

Comment