- Search Metals Mine
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Aug 10, 2022You can use this - it shows Range and how many bars in between.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 9, 2022quick change. FYI, I will take some break from your requests from now on.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 9, 2022Use attached as ref which draw FIbo to chart. if(ObjectFind("FIBOexpansion") == -1) { ObjectCreate("FIBOexpansion", OBJ_EXPANSION,0,Time[pos3],High[pos3],Time[pos2],Low[pos2],Time[pos1],High[pos1]); ObjectSet("FIBOexpansion", OBJPROP_STYLE, ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 9, 2022Basic EA attached. You don't need indicator as candle detection logic is ported. However, as is, result might be mixed. You may try on various pairs and TF which mix is better for this strategy. Based on my optimization run, entrypoint 60, take ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 8, 2022[quote=siglot;14092762] Thanks brother, you're really making my life easy day by day. This will make it perfect. Secondly, can you educate me further... is it truly possible to combine 2 different indicators into a single one (single file) without ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 8, 2022That is very good start. Just be aware that Tester results is not same as live as Tester is simulated data and live has real data with no fixed spread. if you really want to use tick information, MT4 has below: MqlTick tick; ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 8, 2022I see you have declared buffer but I don't see any routine that fills buffer. 1. On Init() Set those as 0.0 as those buffer should be initialized as Empty or 0.0 SetIndexEmptyValue(0,lo+m6); SetIndexEmptyValue(0,lo+m6); 2. On Start() You should fill ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 7, 2022I didn't change anything on the indicator itself. Also, there is no ChartEvent. You will see same from original indicator if that freeze, not repro on my computer. You can try out if that repro on original indicator. Only thing added is just 3 lines ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 7, 2022Try this one. I have converted to TEXT.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 6, 2022Noted. It was missing ChartEvent handling. But, I will make change to TEXT and update once market opens and tested.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 4, 2022Here, you have it. You can turn on/off price labels from option.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 4, 2022it seems it has LotsOptimized() that checks if lotsize is right. when you have some number in your DecreaseFactor, it will check if you have previous loss trades. and the more you loss count, it reduces your lots more. Basically, idea is that you ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 4, 2022that value means EMPTY_VALUE so you are not getting real value from buffer. Without actual code, I can't say what is going on. Make sure you have filled your buffer in your indicator.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 3, 2022I looked into this already and it is too much of work - all repetitive and prone to mistake. the way it is programmed is not organized into small chunk but just long list of doing same thing over and over. I won't touch it.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 3, 2022MACD cross over alert is very common and you should find a lot in this FF. Just search "MACD Cross Alert" One of those are here - MACD crossover alert | Forex Factory
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 3, 2022You can't set Indicator buffer size like double ExtBufferTest[4]; that is dynamic buffer so don't put fixed size.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 3, 2022Maybe, you don't understand how Magic Number works. You can only set MagicNumber using EA, and any Manually placed order has MagicNumber = 0. it will impact any order with MagicNumber = 0 including any other EA that placed order without MagicNumber ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 3, 2022Made changes per your request and fixed loading time refresh issue.
I will code your EAs and Indicators for no charge
-
BlueRain replied Aug 3, 2022I see. I will check it out and upload once all the fixes are in.
I will code your EAs and Indicators for no charge