I've been trying to add a line option so I can set the thickness of a plotted line, the indicator is called "JurbolMultiMAColorSlope"
it doe not have this in properties.
I have added this and it is available in properties now using this code bellow
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name="Line", Order=1, GroupName="Parameters")]
public int Line
{ get; set; }
I have also added in the SetDefaults see bellow.
Line = 3;
It gives me the option to change the thickness in a new parameter but it does nothing
I need to have a "Plots" Line opion
The State.Configure is as bellow
AddPlot(Brushes.Orange, "MA");
Adding a value of 3 does not help see bellow
AddPlot(Brushes.Orange, 3, "MA");
I have read the ninjascript help guides for about a week now i think i may have confused myself
Any help would be greatfull
thankyou

That was it, how simple it is thank you Jesse I'd been cursing myself knowing it was something so small
Comment