- Search Metals Mine
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied May 4, 2020When you say YH/YL, what does it mean? Does it mean current price ( Close[0] ) breaks YH/YL ( Highest/Lowest of year) Does it starts from Jan 1? or 1 Yr period ( Starting 365 days ago )?
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020No. Not at all. it was very easy and simple.. straight forward. Are you talking about the YH/YL indicator? Let me see what I can do about it.
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020Currently, it works by dividing Perid / time frame. so, if you want 4H overlay on 1 HR, it collects 4 hr information on 1 hr as 240/60 = 4 candles. It doesn't know anything about time - it simply count candle counts - and draw boxes every 4 candles ...
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020Try this fixed Todays PL1. For ShowBalanceEquity, it is using buffer to draw equity line and it won't be easy to consolidate or it will take more time to consolidate. however, you might find this 'TradeInfo" useful as it shows most of account ...
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020Due to complexity of EAs and time consuming to test out, I won't be working on EAs. Most of EAs has its own logic and EAs doesn't have much of comments why and how it works. And I have to follow its logics with mostly undocumented workflow which ...
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020That is due to option "AlertsOnCurrent" is false. When it is false, it doesn't send alert for current bar. Set that to true and see how it is going. And it only send 1 alert per bar. So, there will be only 1 alert sent. if your signal is repaint and ...
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020Not able to work on .ex4 file, we will need source file (mq4) if there is any help needed.
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020There is nobody that can let you know what is best settings for you. Each trader has different needs and should adjust based on its trading setup/period/personality etc. Longer the Time Frame to trade, larger the period numbers. Play with it and you ...
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020Fixed. It was there before number was rounded to integer without digits. Now, I guess it is not needed.
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020Not sure what is going on. but, try attached. I have tested and confirmed it works.
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020Not sure if this is same. But, try this url
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020Push Notification is turned off by default. Can you try after enable?
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020We can't edit/fix ex4 file. Please bring mq4 files for any assistance.
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020Try this.. not tested but replaced this: " I = Bars - 1" to I = numberofbars; You can set bars in options.
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020Can you check your pairs if it starts with any prefix or ends with any suffix? code was looking for currency pair ends wit suffix like XXXXXX + ( suffix)i. Maybe, they don't prefix "I" anymore. if that is the case, change extern string Suffix="-4"; ...
I will code your EAs and Indicators for no charge
-
BlueRain replied May 4, 2020You can delete this : +time_offset it was for if there is any time delay or something else. Please replace with below: bool NewBar() { static datetime LastTime=0; if(iTime(Symbol(),Period(),0) !=LastTime) { LastTime=iTime(Symbol(),Period(),0); ...
I will code your EAs and Indicators for no charge
-
BlueRain replied May 3, 2020it seems there is still a bug. it only works on first subwindow. I will check it out more so it works on all subwindows. Update 1: I fixed bug and now, it works in any subwindow.
I will code your EAs and Indicators for no charge
-
BlueRain replied May 3, 2020It should work now. Basically, subwindow was hardcoded in original code and now I replaced with ChartWindowFind() so it can find current window indicator is runing. Update 1: There was a bug that it only worked on window 1. I fixed bug and now, it ...
I will code your EAs and Indicators for no charge
-
BlueRain replied May 3, 2020Thanks for pointing out. I found what was issue...it was comparing msg string which is too simple and considered it was new. It was copy & paste and I had to change a bit to make it unique msg. Also, I moved variable to global.
I will code your EAs and Indicators for no charge