Did this for ES almost 20 years ago using IB and excel
old news. beep beep. boop.
old news. beep beep. boop.
You could assign the bid a tone and the ask a different tone, and just have it play with a gradient on the price axis. It would be another representation of price besides a visual image. I haven't seen any software do this yet.
If price is on the bid, tone persists, as size dwindles tone drops off and as size is added tone picks up. The ask would have a totally different assigned tone and same drop off and pick ups. Every trade at the bid or ask would just be a beat of that tone.
way overpriced imo
have a spreadsheet you can share?Did this for ES almost 20 years ago using IB and excel
old news. beep beep. boop.
Thanks Spectre....I’ve seen this and a few others out there. I have yet to take these basic instructions and build a more complex spreadsheet. I tried this specific example to beep when for example, last size > 1000 on a set of streaming quotes and the results were hit or miss.
Application.Wait (Now + TimeValue("0:00:01"))
DoEvents
Thanks for the input! I’ll try “DoEvents” and see if that does what I want. Def want sub 1 second... I am currently trying to monitor multiple streaming time and sales and play sounds based on “last size.”Try immediately surrounding (before, after, or both) your sound generating statement with:
and/orCode:Application.Wait (Now + TimeValue("0:00:01"))
Code:DoEvents
If a one-second delay is too long (re: the timevalue delay function above), only use doevents.
You may also loop the doevents (or use multiple statements) to increase the delay in small increments.
Thanks for the input! I’ll try “DoEvents” and see if that does what I want. Def want sub 1 second... I am currently trying to monitor multiple streaming time and sales and play sounds based on “last size.”