Quote from FuturesTrader71:
I have attempted in the past to pass data from one PC to another across a network and couldn't get it to work. I tried to do that with the fast cash being computed on the CQG PC and then passing the last fair value price to the TT (trading) machine to display the fair value on the market depth. I guess I'm just not versed enough in IT and programming to be able to do that. I'm good with a spreadsheet, but that's the last stop.
It would be great if I can get in touch with you to find out how you are able to pass data across PC's. That would be a huge asset for what I'm doing.
Also, why would the TICK be difficult? It is basically the number of stocks upticking minus the number of stocks downticking. Is it a sych issue with the price feed?
71'
My account info has my website and my website has my phone number or you can send me an email...
Basically you use a VBA timer event inside of excel Visual Basic IDE and it fires off every 1 or 2 seconds and during THAT execution of code the code collects the data from the formula fields that total up the SP500 ADD, TRIN, LAST, etc and then INSERTS those values (across a network share) into a database file that is charted from a Charting Software package automatically...
pretty straight forward once you have the timer event in Excel firing off at whatever interval it is set to fire off at....
The TICK is tricky TO CODE because you always have to hold an initial value and compare it to the next changed value and then create a 1 0r 0 boolean flag in the next row to show wether it was an up or down tick and then if the value was not changed from the inital value you have to decide how you are going to handle that or ignore it... then the last formula field also has to total all the 1's and 0's to see what your tick reading is...
really CPU intensive... at least for what we tried and gave up on... we do the ADD, LAST, TRIN, VOLD, etc... but not the TICK...
The NeoTicker software does the best job of this... they take all the symbols (500) and put them in a Ram Cache and then run the algo thru them to get the Tick for the SP500... but they go one step further in that they don't score a tick move as happening unless 16 UP ticks have occured or 16 down ticks have occurred thereby ruling out the false and stale tick moves you have in the NYSE Tick...
anyway - they call their indicator Tick16... check out their docs... they explain it better than me...
HTHelps
cj...
__________________
HAVE STOP - WILL TRADE
If You Have The Vision We Have The Code