- Search Metals Mine
- 2,159 Results (13 Threads, 2,146 Replies)
-
cja replied Dec 3, 2019Good idea - updated v5 posted on the First Post. image
Symbol Changer Profit Display
-
cja replied Dec 1, 2019I posted this indicator on Nov 9th which was a Saturday for me so I had no live feed to test it on and I have just noticed that it does not update on a live chart. There have been 136 downloads and not one person has commented that this issue ...
I will code your EAs and Indicators for no charge
-
cja replied Nov 29, 2019Hi, I have done this on Windows 10 on my Microsoft Surface over 18 months ago so I think you should be able to do it as well.
The example I gave is using Windows 7 admittedly I have not looked at it with the latest Windows 10 after 18 ...I will code your EAs and Indicators for no charge
-
cja replied Nov 29, 2019The issue is with your screen definition so I suspect you would have this problem with a lot of display type of indicators. Here are two ways of resolving it. This changes your whole computer text size, set it to the 100% it can differ slightly ...
I will code your EAs and Indicators for no charge
-
cja replied Nov 24, 2019You do not need to mq4 file to save your setup. Use the Load/Save buttons in the indicator properties window. image
Monthly/Weekly Open Line
-
cja replied Nov 21, 2019Hi mntiwana, I added in a set of color input display options. file
I will code your EAs and Indicators for no charge
-
cja replied Nov 13, 2019Try this, I have also added auto candle resizing, when zooming in or out click on the chart to update candle size or wait for a new tick. file image
I will code your EAs and Indicators for no charge
-
cja replied Nov 10, 2019Try this, I have updated the code and added in auto candle resizing. file image image
Parabolic SAR EA
-
cja replied Nov 7, 2019You could always do this as I do not have the time to code your request. There are many ways of loading the dashboards as you can see by these 2 examples. NOTE : When loading multi Dashboards you must change the ID for each Dashboard. NOTE : if you ...
MTF Dashboard thread
-
cja replied Nov 5, 2019why did you limit the number of pairs in the HMAdashboard to 21? Sorry my mistake I limited the number for the HA Alerts because I felt it was the max pairs that could be used without affecting the performance and just left that piece of code in the ...
MTF Dashboard thread
-
cja replied Nov 5, 2019When testing the Heiken Ashi Dashboard Alerts my MT4 platform sent 40+ emails in a few seconds, I checked the code and found nothing wrong then tested it again and everything worked as it should and only sent one email for each signal, I suspect it ...
MTF Dashboard thread
-
cja replied Oct 29, 2019Try this I have put a time filter into the code. file
Horizontal Lines change colour automatically
-
cja replied Oct 25, 2019Already done, it pays to at least look at the attachments on a thread to see if what you want already exists? Just change the overbought/oversold values and the colors to whatever suits. url Screenshot showing different RSI Periods and ...
MTF Dashboard thread
-
cja replied Oct 15, 2019I tested the indicator and it appears to be an ID number issue or some sort of code conflict because it happens randomly but it never happens if the timeframe buttons are displayed. I had a bit of a look at the code but could not find anything ...
Symbol Changer Profit Display
-
cja replied Oct 14, 2019static datetime timeprev; if(timeprev==Time[0]) { return(0); //only execute on new bar } else if (timeprev==0) { timeprev=Time[0]; // do nothing if freshly added to chart return(0); } else { timeprev=Time[0]; // bar processing here } Perhaps you can ...
Best Way to Code Trade Once per Bar at Open on MT4?