|
|
Search
You searched for the word(s):
Showing page 1 of 40 (1,999 total posts)
< 1 second(s)
-
http://forum.equis.com/files/3018/programming_files/entry19695.aspx
-
-
Does your dll call any other dlls, such as an OS dll which the user might not have due to different OS? You could add some code to write to a log file when MS attempts to load the dll to see if it's failing initialisation.Can you send the dll to someone else and have them try?wabbit
-
I assume you've thoroughly tested the library with MSXTest?wabbit
-
Has your friend shut down and restarted MS? DLLs are loaded when MS starts, so any libraries added after MS has started will not be referenced.wabbit
-
Hi Zafa,Welcome to the Forum.Do a search of the forum for ''latches'' and see some of the many discussions on the topic.Hope this helps.wabbit
-
This might help? http://www.thechartist.com.au/forum/ubbthreads.php?ubb=showflat&Main=2580&Number=87501#Post87501:Here is some of what I know about the situation...The are two aspects in MS for which you have to be aware:OPENING a chartCHANGING the open chartThey aren't the same thing!When
you File > Open a chart for which a Smart Chart
-
What were the results from your search of the forum?wabbit
-
Start here : http://book.mql4.com/wabbit
-
KB968389 applies to XP64 , so not to me.Have you read : http://support.microsoft.com/kb/968389 ??Have you contacted Microsoft Support?wabbit
-
Read the EST trade logs and see how many trades were considered but rejected -- usually due to trading 100% of the account.wabbit
-
Format your indicator as points. If you're displaying the default tools in MS, look in the bottom left corner of the chart, or in the Users Manual.wabbit
-
Yes, you get what you pay for.wabbit
-
Use a PREV-based latch (or maybe even the GV.dll) to store the value of the last trade and make your comparisons to that.Personally, I thing the best way to be dealing with these ''complex'' systems is outside of the limited scripting language of MS and the EST. Either get the MDK and use more powerful programming languages to deal with ...
-
Depending on the format of the data, just do the conversion and the data will be stored in the right security; or create a new security and import the data into that.Remember: MS can only have 65500 data points per security file, so be careful converting ticks into MS data.wabbit
-
save2008:Anyone can help on this.By ''help'', do mean do this for you?wabbit
-
I'd start by reading the users manual and completing the free Equis formula primer exercises; also searching the forum for others who have already completed these tasks. Whilst perusing the forum, you might also come across http://forum.equis.com/forums/30031/ShowThread.aspx#30031wabbit
-
Install MS where ever you like. (I have never really had a good attempt at installing MS on a thumb drive, but I don't see too many reasons why it wouldn't work?).MS doesn't really care where the data files are located (although closer is faster!) All add-ins must reside in the External Function DLLs folder in the installation folder of ...
-
I'm not in front of my MS machine right now, but I know it is fully up-to-date with all the XP patches/updates (whether or not those specific KBs are installed?); when I left home this morning MS Pro9 w/QC was running normally.Do you get any error messages?wabbit
-
See Richard Dale's Advanced Stop.wabbit
-
The Advanced Stop function returns a price (plot it on a chart and see). The EST needs to evaluate an expression to make a true/false determination to exit the trade. Make a comparison of price versus the stop.wabbit
-
No.Only expert may be attached to a chart.wabbit
-
If you have figured it out -- well done.What was the problem, others with the same problem later may read this thread and wonder what their problem is too.wabbit
-
You get what you pay for.If you want to make trading decisions based on inaccurate and/or erroneous data then you're going to be in for a rude shock when you start to lose money.Pay for good quality, clean and updated data and you'll be better off from the very start.Do a search of the ''Data Related Questions'' section of the forum and see what ...
-
I'd start by doing a search for ''volatility quality'' on the forum and see what comes up?The next thing I'd try is to find a written definition of what the MQL is supposed to be doing, as this is often easier to correctly interpret than the code itself. wabbit
-
Instead of piling up Ref() functions, have a look at the Sum() function.wabbit
-
Have a look at the Security() function.Do a search of the forum for ''relative strength comparative'' and see some examples in the results.wabbit
-
Slope can be compared to the change in price (x-axis) over time (y-axis) so is the same as ROC().If you want to measure it in degrees/radians etc, have a look at atan(). Also have a look for this function by searching the forum for several discussions on its use.wabbit
-
Judicious use of the ValueWhen() function can be used to look back to find the most recent occurrence that wasn't an inside bar.wabbit
-
Try Richard Dale's Advanced Stops add-in. It has been written about many, many times on the forum. Do a search.wabbit
-
If it works for you then the code is right for what you want it to do.Personally, I prefer to measure the stop to be the highest value of the expression since the trade was entered; where you are just using a fixed value of ten bars.To be able to write this will require a lot more code; or you can simply implement Richard Dale's Advanced Stops ...
-
Post the OmniTrader code and someone will be able to tell you whether it can be rewritten for MS.wabbit
-
For all its worth, the centered moving averages cannot be used to generate trading signals on the last bar of the chart, although depending on how you employ the indicator will determine the signal generation and its useful in trading on the last bar.Simple calculus says the velocity of price is the rate of change of that price, or the first ...
-
Is this just for one symbol? Or an entire exchange worth of data?Why export data from MS to Excel? Why not import/rewrite the Excel functions in MS?wabbit
-
http://forum.equis.com/forums/permalink/29738/29852/ShowThread.aspx#29852
-
ZZ,As much as yesterday's code showed how to eliminate the N/A by using the forum.sum functionality, I don't think the code achieved the aim? I haven't spent much time thinking about what the resultant curve should look like and as no chart has been posted, I hope you'll find this version is faster whilst still eliminating the ValueWhen() ...
-
Hi itourei,Welcome to the Forum and great first post -- well done. You have provided a full description of the intent, the code and a description of where things are going awry; thankyou.I don't have time this morning to give you a complete answer, but recommend in the mean time you find Roy Larsen's latch tutorial in the Files section. In ...
-
Hi Vades,Welcome to the forum.The physical size of the data file is ''irrelevant'' as MS can only deal with a maximum of 65500 data points per security.If you're getting ''maximum errors exceeded'' then you are also having issues with, what I assuming is data conversion from another format to MS format data? Have a look in the MS Downloader ...
-
Although the Chandelier Exit is a great programming exercise in MS, you are missing some of the critical concepts in the execution of your version; I don't have time this morning to g |