tick

How can I automatically calculate axis scale and intervals?

Does anyone know where I can find an algorithm that given a set of values (dates) for an axis I can calculate a reasonable scale and tick interval? ...

Condensing Stock Data

I have a data set that is composed as such: 2009,11,01,17,00,23,1.471700,1.472000 2009,11,01,17,01,04,1.471600,1.471900 2009,11,01,17,01,09,1.471900,1.472100 2009,11,01,17,01,12,1.472000,1.472300 2009,11,01,17,01,13,1.471900,1.472200 2009,11,01,17,01,14,1.471600,1.471900 2009,11,01,17,01,18,1.471700,1.472000 2009,11,01,17,01,18,1...

C# / .Net stock tick data transportation libraries / API ?

I am currently trying to find a simple, easy way to publish/broadcast stock tick data (real time) between C# applications. I am currently using nServiceBus for some other publish/send message communication processes, however I believe the overhead of MSMQ/serialization/etc. will be too much for transporting time-critical data such as st...

gnuplot cuts off label of rightmost tickmark in plot

When I plot something in gnuplot, the resulting plot has numbers labeling the tickmarks on the x-axis. The label of the final (rightmost) tickmark is always cut off (the labels are are, like 6 or seven digits). Is there a way in gnuplot to make the graph window wider? For the record, I do not want to make the actual plot wider just th...

Force a Timer to cycle in a set time [C#]

Hello all. I'm rewriting a VB 6.0 program in C# .Net for an internship. It measures incoming data from a precision grinding machine and gives a readout on its accuracy. A lot of the meat of the program is done within a Timer object, with an interval of 10. The program is unfinished, so it has yet to be tested on an actual machine, but ...

Timer not firing in an event handler containing two adjacent 'if' blocks!

when i'am calling timer1.Start() func in an event handler that contains two adjacent if blocks, its tick events doesn't fire and the code following it also doesnt get executed. on the othr hand, using an if-else pair instead solves the problem. why it can be so?? ...

YUI range slider separate ticksize for subranges

My requirement is typical. I need a price range dual-handle slider, where based on the current handle value, the tick size (step size) will change, for example if price is less that 1500, the tick size is 50. between 1500 and 15000, the tick size should become 100, between 15000 to 50000 the tick size should become 500, and so on. I have...