Support Board
Date/Time: Sun, 22 Dec 2024 18:46:52 +0000
Post From: sc.BaseDateTimeIn question
[2015-04-27 05:04:02] |
enemyspy - Posts: 306 |
I am wondering if anyone can help me with this small chunk of code...see the line with a bunch of asterisks beside it. The time value that shows up on the subgraph/spreadsheet, returns a date value with time 0:00:00. Would it have anything to do with trying to place it in a float array? else if(bkt[j] >0 && (zclass[j] ==3 || zclass[j] == 4)) //if we have an downside breakout { for (int k = i+1; k < sc.ArraySize; k++) //find stuff { if(hi[k]>Patthi[j]) { dead[j] =1; deadx[j] = sc.BaseDateTimeIn.TimeAt(j);//************ } } if(dead[j] == 0) { d1[j] = d1[i-1]+1; } else { d1[j] =d1[j-1]; } } Date Time Of Last Edit: 2015-04-27 05:15:41
|