* For the NT indicator "Current DayOHL", how can I script an open to be at 8:30 am, instead of the normal open (I trade eminis)?
* I downloaded an indicator that shows no errors when compiled. As I added additional script to it, the add function is not plotting the new script. The existing indicator has:
Add(new Plot(new Pen(Color.Green,2), PlotStyle.Bar, "BullBar"));
Add(new Plot(new Pen(Color.Red,2), PlotStyle.Bar, "BearBar"));
I later included:
Add(new Plot(new Pen(Color.Gold,2), PlotStyle.Bar, "GldBar"));
where GldBar is calculated in the main section (GldBar.Set([0])) and the parameters defined in the Properties section.
There are no compilation errors, but GldBar will not plot as I have it with the above Add function. On the other hand if in the main section of the calculations I replace GldBar.Set([0]) with BullBar.Set([0]) it will plot a gold bar based on the calculations. What am I missing?
Thanks

Comment