- Search Metals Mine
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Apr 16, 2016
Here you are. Remember that you also have to have the Wilders trailing stop in the indicators folder (Uploaded in post #21)
GumRai's Dashboards
- Gumrai replied Apr 15, 2016
I have run the code and it alerts when the time-frame is changed or the indicator removed
MT4 indicator not calling OnDeinit()
- Gumrai replied Apr 15, 2016
Your code alerts on deinit I don’t know why it wouldn’t work for you
MT4 indicator not calling OnDeinit()
- Gumrai replied Apr 15, 2016
You drop an indicator, EA or script on a chart. Adjust your inputs and click Save Next time click Load and load the SET file
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 14, 2016
Well you must have created buffers to display the candlesticks, so create the Fibo using the buffer values Create the Fibo in the same way as in my code amendment and you should be ok.
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 14, 2016
Here #property indicator_separate_window extern string UniqueID = "XIT_FIBO"; extern color LineColour=clrDodgerBlue; int window; double Price[]; //+------------------------------------------------------------------+ //| Custom indicator ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 14, 2016
Doesn't the code that I posted do that? I see that there are spaces added in some places, I don't know where they came from as they were not in the code that I posted. If I try to edit them out, I can't because they don't show in the edit window. I ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 14, 2016
#property indicator_separate_window extern string UniqueID = "XIT_FIBO"; extern color LineColour=clrDodgerBlue; int window; double Price[]; //+------------------------------------------------------------------+ //| Custom indicator initialization ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 10, 2016
Erksa, that indicator calls an indicator called "Wilders trailing stop", you will need to upload that as well.
GumRai's Dashboards
- Gumrai replied Apr 10, 2016
Hello Erksa, I don't know the indicator. I will take a look and if it seems to be suitable for this dashboard series, I may code it. I don't know that I will have much spare time for a while though.
GumRai's Dashboards
- Gumrai replied Apr 9, 2016
Like this? Just shows the pip range either HL or OC, current or previous(closed) bar
GumRai's Dashboards
- Gumrai replied Apr 9, 2016
Hi, yes, WindowFind uses the Indicator short name You need to put IndicatorShortName(UniqueID); in Init and where you create your objects replace ObjectCreate(Prefix+"Grid",OBJ_LABEL,window,0,0); with ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 9, 2016
I don't think that translation by google changes font size randomly. I see that you have now edited your posts to make them easier to read. I still think that you have posted in the wrong forum though.
Understanding market behavior
- Gumrai replied Apr 9, 2016
What a horrible mix of font sizes etc. It makes the post a pain to read. Anyway, I don't think that it has anything to do with the Platform Tech sub-forum. Maybe you should move it elsewhere.
Understanding market behavior
- Gumrai replied Apr 9, 2016
Hello, I don't know if I can help you much You can try //Draw Objects window = WindowFind(WindowExpertName()); ObjectCreate( Prefix + "Copyright", OBJ_LABEL, window, 0, 0 ); and replace the relevant 0 in all the ObjectCreates to window
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 8, 2016
Hello, Try this. If the week on your broker starts on a Sunday, just change the day. You will probably have to play around with the offset so that the arrow doesn't partially cover the bar.
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 6, 2016
Sorry, that is decompiled code. Most coders will not work with decompiled code and I am one of them.
Custom RSI Indicator Arrow Not Working
- Gumrai replied Apr 4, 2016
Did you make sure that the "EURGBP" was fully updated in the time-frame that you are using in the tester?
Data from different symbol in Indicator - MT4
- Gumrai replied Apr 4, 2016
As far as I know, accessing different pairs' data in the tester can be unreliable as the tester will not manufacture ticks for the other pair. To have any sort of accuracy, you need to be sure that the symbol is fully updated for the timeframe that ...
Data from different symbol in Indicator - MT4