My line dont show on the chart.
I thought it was int double problem but not sure anymore.
barfibo is the number of bar the result come with so i thought it would draw a vertical line at bar 97 if result give 97. Am i wrong?
Here's the code:
double barfibo = (bar / fibo)+ bar;
int somefib = (int)barfibo;
int someOtherfib = Convert.ToInt32(somefib);
Draw.VerticalLine(this, "someOtherfib", 10, Brushes.Black);
ty

Comment