Welcome to NexusFi: the best trading community on the planet, with over 200,000 members Sign Up Now for Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to register in order to view the content of the threads and start contributing to our community. It's free for basic access, or support us by becoming an Elite Member -- discounts are available after registering.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
Now that MC 8 beta 2 supports Level II analysis from EasyLanguage, I am wondering if anyone has interest in creating a function that will dump data to Excel (csv) for further analysis or patterns, etc?
Any input on which columns and what order to present to Excel in the csv, for a useful analysis?
Before I even look at this, can anyone confirm if EasyLanguage is processing these requests for every market depth move, or is it only on Last changes?
I mean lets say I run it on a 1-tick chart, that still has me missing the majority of market depth movements.
I looked at their documentation and didn't see it clarified as to how to access all market depth changes, even without a Last change.
Played with this for a minute, first problem I ran into is that you have to have a DOM window open to the instrument being charted for it to work.
Hopefully it saves some time for someone else.
I can also confirm it is only updating on a Last change. No update on all the depth changes. Would be nice if this was improved to be able to monitor actual depth changes like NinjaTrader.
You could try to use RecalcLastBarAfter() to force a recalculation of the indicator/signal.
For what it's worth, I think it's a great idea to collect market depth. I'm planning to do the same, but I'm waiting for the Release version of MC8 before updating -- so no valuable input from me (yet).
Mike, did you look at the included ---Market Depth on Chart--- indicator, it is the first at insert study.
The indicator update with
UpdateSpeed_seconds(0.1);
RecalcLastBarAfter(UpdateSpeed_seconds);
so it is not event driven.
It updates as similar as the DOM with Interactive, if you use TT Trader connection you could try to lower the update limit to 0.01. The only problem is that you can only use the broker data for the DOM data displayed, the indiactor cant receive Level 1 and Level 2 data from Iqfeed. So i need to run a IQFeed chart with a hidden IB chart in the background.