plotvar = Math.Round( total/gapSeconds ,1);
Print("");
Print("total " +total);
Print("Time elapsed is " +gapSeconds + " seconds.");
Print("plotvar "+plotvar );
StrategyPlot(0).Value.Set( plotvar );
the above code will not plot
it would appear that gapSeconds can not be used to divide
StrategyPlot will plot gapSeconds...or total...but not plotvar...even though all variables print to the output window properly...
is there something about the DateTime method that allows the number to be used to print but not divide?
thanks

Comment