- Search Crypto Craft
-
mladen replied Oct 10, 2017Sorry, no idea why. Buttons have nothing in common with the dlls (dlls are needed only to download data). If the close button works, then the minimize button must work too (since the code that handles those two is exactly the same), and those are ...
Yet another news reader...
-
mladen replied Oct 10, 2017Press the button at the bottom of the news indicator that shows "show event lines" tool tip - like this : image Once you press it, it will change the color and you shall have something like this : image
Yet another news reader...
-
mladen replied Oct 10, 2017They are working as they are supposed to work - check again. There is no configuration that could cause the buttons not to work If you are trying to press the "flags" (on the right side of the news main window on the example pictures), those are not ...
Yet another news reader...
-
mladen replied Oct 10, 2017Just one small addition to the first post : _______________________________ - Minimizing the window does not turn the indicator off. All the settings and choices are still valid (that were set using the button choices) and the indicator is working ...
Yet another news reader...
-
Yet another news reader...
Started Oct 10, 2017|Platform Tech|227 replies
First some words of explanation ... __________________________ There are already quite a few ...
-
mladen replied Oct 10, 2017wolf300 Seems that it is based on "up tick" and "down tick" volumes. Since we do not have those on mt seems that it can not be done. We could attempt to "reconstruct" them using close as criteria, but in that case you shall get what VSA and similar ...
Experiments - while waiting for an order to get closed
-
mladen replied Oct 9, 2017OnStart() is used in scripts only OnTick() is used in EAs only OnCalculate() is used in indicators only You can not have functional OnStart() and OnTick() in the same code
I need to add an expiry date to my Expert Advisor
-
mladen replied Oct 9, 2017In general any average using period less than or equal to one must return the value itself. So, for the version that uses ima, just set the period to <2. If you set the ma period (of any ma type) to <=1 it will return chosen price.
Need help to get one final Fractal indicator
-
mladen replied Oct 5, 2017If you don't mind the question, but for how long are you coding?
very cool Trading Panel EA needs some adds
-
mladen replied Oct 4, 2017Did not see it yet Will check and get back to you on this subject
Experiments - while waiting for an order to get closed
-
mladen replied Oct 3, 2017Would you mind explaining to all of us what would your fast version of code do when a required price would be median, typical or weighted? Or if we added one simple parameter in which we would expect an ENUM_APPLIED_PRICE type of choice and then ...
Experiments - while waiting for an order to get closed
-
mladen replied Oct 3, 2017Simple : - get the highest high bar number for the day - get the lowest low bar number for the day - use those numbers to get the bb values at those bars Like this : int _firstBarOfTheDay = iBarShift(NULL,0,iTime(NULL,PERIOD_D1,0)); int _highestHigh ...
BollingerBand Value
-
mladen replied Oct 3, 2017Please read my post(s) again ... I am not talking about using fixed close price. I am talking about using selectable price. Please do not compare what can not be compared at all - that is highly misleading and serves no purpose. Your code can not be ...
Experiments - while waiting for an order to get closed
-
mladen replied Oct 2, 2017Why changing the IMA() call? Call to IMA() is by far the fastest way to get the price if the basic set of prices is to be used (test it, and you shall see) No need for any change in that code (except that one line of code addition I have posted for ...
Experiments - while waiting for an order to get closed
-
mladen replied Oct 2, 2017To make the "repeated median line - multi" work in the strategy tester too, all that is needed to be done is to add one line of code after line 94 (I am talking about the original code). This line : if (Bars<Length) return(0); And that is all.
Experiments - while waiting for an order to get closed
-
mladen replied Sep 30, 2017OK Will see what can be done

Experiments - while waiting for an order to get closed
-
mladen replied Sep 29, 2017I am afraid I don't quite understand Aren't the existing line enough for that? Would you mind elaborating a bit more?
Experiments - while waiting for an order to get closed
-
mladen replied Sep 25, 2017Use any of the EAs that use madc on zero cross (that would be exactly what you are looking for)
I will code your EAs and Indicators for no charge