- Search Metals Mine
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Apr 1, 2020removed bunch of new lines. it should show up on the left corner.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 1, 2020Simple pattern..Here you have it. ( Minor update - line handling fixed )
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 26, 2020To use script, you have to enable "AutoTrading", then it will buy/sell and place SL/TP automatically. Before you click OK, select if this is buy or sell on the popup window first. Default is "BUY". Also, you can enable money management - then, it ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 26, 2020I assume you are looking for "script", not indicator. Check this out if this works.. Not sure if there is any specific about OIL/Metal products but this works for FX.
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 24, 2020Here, you have it - with alert if current price is above band or below band.
Simple request of a coder
-
BlueRain replied Mar 24, 2020Try this; Update: V2 - with arrow.
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 24, 2020You are using separate window and trying to draw on the main window 0. You can't simply add 2 buffers for arrow drawing.. that will do on its own window, not chart window 0. You need to use ObjectCreate to draw object on Main Window 0, not buffer. ...
RSI Divergence
-
BlueRain replied Mar 21, 2020This is not original mq4 file but decompiled / stolen code - and renamed. We can't help it out in here for those stolen codes. However, based on the code, it looks like this is identical file and/or identical logic. You are better off using this one. ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 20, 2020Glad that you are getting some idea on how Candles works. Higher TF candles are basically summed up of lower candles. Yes.. I do code on Meta Editor but just beginner level yet. Not even close to those master level programmers like Hanover.
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 20, 2020If your indicator has something to do with Current Candle's Price like High, Low, Close/current price, it will repaint. Only case it won't repaint is if you are using Open price of current candle which is already happened and written in the rock. ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 20, 2020Added a couple of lines to existing code. Try out..
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 20, 2020Try this one if it works for you.
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 20, 2020this is decompiled code, not able to modify. You should bring original file for assist, not decompiled code.
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 19, 2020Thanks for those stoch indis. I found that "YELLOW BACK" is not needed and Adding QQE makes better signals where Stoch gives entry signal and QQE can be used for trend continuation and signal to exit. For this setting, I use QQE(3,12,3) ( QQE is ...
Looking for Stochastic Indicator - histogram style
-
BlueRain replied Mar 19, 2020thanks for those Indis… I think I had a similar sets before but this one should compliment.
Looking for Stochastic Indicator - histogram style
-
BlueRain replied Mar 16, 2020For Fee, you can use url there is a lot of freelancer MT4 coders that can help you. For Free coding support, you can use this thread url You may or may not get any response as this is 100% volunteer system.
Where are the EA Coders?
-
BlueRain replied Mar 16, 2020Try this.. I made a quick change to existing 3candle pattern detection for this 2candle condition.
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 16, 2020I happed have "mm_bands.mq4" with alert already done before.
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 16, 2020To get this OrderProfit() proper value, you have to select which order first. Steps are: 1. Get all order 2. Select which order you want to process by filter ( if xxx ) 3. Process See documentation: OrderProfit Returns profit of the currently ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 15, 2020You are missing the point. if your time is future, reset to 0 so that it doesn't give error. You can't print something to out of chart like Time[futureindex] You can test out this like below: for(i = 0; i < Maxbar; i++) { Print("Var i", i); ...
Array out of range when running indicator