|
|
Search
You searched for the word(s):
Showing page 1 of 6 (262 total posts)
< 1 second(s)
-
No, it is not okay to use the Write version unless you pay for it. You may contact Equis sales for more information.
-
Same reason as your last post. You're using Read/Write functions (MSFL1_AddSecurity) and probably only have the Read Only version of the MDK.
-
That is a function available for the Read/Write copy of the MDK. My guess would be that you're using the Read Only version. The Read Only version is not able to create or modify securities or security folders.
-
The pointers to MSXDataRec are probably being deallocated at the end of the call to the MSX DLL, since there's no point to keep it around. It's not a threading issue. You're not supposed to be holding onto pointers, since they're not guaranteed to still be there in a different call.
You'd be better off saving the actual data you were passed ...
-
Ah, okay. That makes sense.
No, what I was saying wouldn't apply then. MetaStock's MSFL would be the only copy accessing folders. Your problem then would be how you go about knowing which structures are open and still valid. When MSFL (whether from MetaStock or MDK) is writing to a data file, it must lock it and make it so other instances of MSFL ...
-
If your DLL isn't using MSFL, how is it trying to get data from another security?
-
I don't know what you mean by MSK. I had been guessing that meant MetaStock.
Yes, if MetaStock 9.2 is accessing the folder, MSFL from MDK will not be able to (and vice versa).
-
Yes, some of us visit the forum.
My first guess might be that your copy of MetaStock and the MSFL from your MetaStock Developer's Kit are different versions. One version of MSFL cannot access a folder locked by another version of the MSFL. Your stand alone app is probably the only version of MSFL running on that folder at the ...
-
Also, two different versions of the MSFL can't access a folder of securites at the same time while two programs using the same version can.
-
There will be some compatibility issues between older and newer versions of the MSX (a part of MDK).
The MSFL will probably have fewer issues since the file structure has largly remained unchanged. Your older version would be limited to smaller number of securities per folder (depending on the version you really have, it could be 256 securites ...
-
Hi all. It's been a long time since I've visited this forum. I hope everyone is doing well.
This is in NO way related to Equis or Thomson Reuters. This is something I've done on my own time. I rereleased my stock themed game and thought the people here might be interested. It's for the iPhone/iPod Touch and is a twist on Missile Command. You try ...
-
It does nothing with the symbol database. The idea of this utility was to use the symbol database to take care of add, removing, and renaming files, but turned out the code for the symbol database is just far too complex to put into the utility.
It doesn't look at the symbol when deleting based on x days not traded. So it wouldn't matter if it was
-
It may be something considered in a future version. Send it as a suggestion to support or post it in the suggestions for MetaStock thread.
Unfortunately, there isn't anything I'm aware of that will allow you to do it currently.
-
That is not currently possible with the MDK.
-
You could have your MSX DLL make a temp file or something that keeps track of the points. Or the slow route would be to calculate them again, each time.
As for your MSFL questions, the app name and user name can be whatever you make up. They're just to identify apps from each other when they access a folder of data. Put anything in them you want ...
-
I haven't used the MetaStock Formula Language in far too long to tell you whether you can do this in that or not.
With an MSX DLL, you can pass in all the data you need (Open, High, Low, Close, Volume). As you do your calculation, the data is in an array and you can go back data points all the way until the beginning of the data. So you can use ...
-
When you purchased the MDK, you got an MSX and MSFL sample. The MSX sample is a Moving Average that uses data passed in from MetaStock, does the moving average, and passes the result back to be charted. The MSFL is an example to show you how to read the data files. You can combine the two if you need MSFL and to be able to chart data.
I'm a bit ...
-
PTJim:Brandon, thanks for the pointer to the MDK info page; it's pretty informative.  I'm not a potential developer, but very happy to see the info there for those who are.And FWIW, I like MetaStock 9.1 very much for what it is and think it's well worth what I paid for it, and for the few plugins I own.  I just hate seeing it sit still ...
-
PTJim: Branden Russell: PTJim:they sure are jealous of that MDK, aren't they?
We're not jealous of the MDK. I'm not even sure how to respond to that. We developed it. It does what it was designed to do.''Jealous'' was an unclear choice of word; that's why I changed it to ''protective''.  And by that I meant Equis is treating the product as ...
-
PTJim:they sure are jealous of that MDK, aren't they?
We're not jealous of the MDK. I'm not even sure how to respond to that. We developed it. It does what it was designed to do.
PTJim:Yes, I use MetaStock (version 9.1 because there's zero reason to upgrade) There's at least one reason. I think 9.2 is the version I added the handy dynamic symbol
-
It hasn't always been that price. There have been a couple promotions in the past taking it to about $100 or so for forum users and such. No, it has never been free.
People purchase it in order to make DLLs for a formula that can't be done in the built in MetaStock Forumla Language or so they can make an app to access data, etc.
Not sure why Paul
-
Unfortunately, that only works with VC 6. I'm not familiar with making project templates like that, so I'm not sure how possible it is to take that template for VC 6 and make one for 2008.
However, you can take the VC sample project and then just remove the extra code and leave it as a base project that you can modify however you want.
-
The MDK can't help you with doing anything with that menu option. MetaStock is setup to work with some brokers, I believe. However, the MDK can't design a broker feed through that menu.
You can try to do an MSX DLL that uses a broker API when certain criteria is met and sends in the buy/sell orders.
Or you can post in the MetaStock section of ...
-
I hope everything works out for you and don't worry about anyone coming after you.
-
I'd imagine it's in both the MetaStock and MDK license agreements not to reverse engineer or other such things with the files. I haven't actually read them myself, but that's generally in every license agreement.
I'm no expert at law, nor am I familiar with our agreements, so I can't say for sure that it's illegal to use software like what was ...
-
ThrushCreek:Sorry, the date problem had to do with the Canadian securities. They are not as straight forward as the us securities which just need the us; removed. The Canadian need a .TO appended and in some cases even the symbol is slightly different. I also notice that Reuters data link is case sensitive for the downloader but not for Metastock.
-
The idea is that you're not supposed to work directly with those files. I think it's in the license agreement that you agreed to that you won't do that. I cannot support you with doing so. Generally, when you're reverse engineering things, you're doing so illegally.
I'll answer the question, since you do have the MDK and the question is a valid ...
-
|