Attached File(s)
study indicator settings and test it well...
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote}...For example it is Monday. The indicator must from today project the same levels six days into the future. Currently it can only do one day at a time...Ignored
Disliked{quote} That would be a different indicator then, something you can do is look for some ruler or grid indicator I made, draggable with levels as % of the range, size the range to make the % levels the height you want or inquire with others. https://www.forexfactory.com/thread/...2#post13618712 https://www.forexfactory.com/thread/...3#post14124223 https://www.forexfactory.com/thread/...5#post13611345Ignored
DislikedHi, I'm trying to make an EA that will open an order based on the last 2 digits of Close (1). If the last 2 digits are 00 or 50 then open a pending order. My question is how to get the last 2 digits of Close (1)? Can someone please lend me a helping hand? Thanks in advance!Ignored
DislikedDear great coders, this is a weekly and daily GAP indicator, I humbly ask for the following: 1. Add the date of each week and daily in the GAP as appropriate. 2. Add the option to select the color and type of line for the weekly or daily GAP. 3. Add a button to show and hide the indicator on the chart. Thank you in advance for your kind understanding and collaboration. {image} {file}Ignored
Disliked{quote} if ((StringSubstr(name,0,9) == "Trendline")) to get the last to digits - In this example i get the first 9 letters of a string. Search StringSubstr on google for more infoIgnored
DislikedDear great coders, this is a weekly and daily GAP indicator, I humbly ask for the following: 1. Add the date of each week and daily in the GAP as appropriate. 2. Add the option to select the color and type of line for the weekly or daily GAP. 3. Add a button to show and hide the indicator on the chart. Thank you in advance for your kind understanding and collaboration. {image} {file}Ignored
Disliked{quote} Thank u so much for your help!! I didn't think I would get help so fastthat is so cool! I tried this robot and it worked as I planned, but I had some problems when I started a backtest. It executed the trade to late. It must be when two chart (in this case 15m and 30m) cross 50 level and close at the same time
(see pictures. One is from the strategy tester and the other picture is how it should work ) Is it possible for you can help me with that? It would be awesome! Is it possible to add magic number aswell? And martingale...
Ignored
DislikedFriends, this code is to draw a text object at the specified time, I want to draw the number of days plus the limit of dates, such as 5 days, how do I change it? #property indicator_chart_window extern int Hour_Num = 19; extern int Minute_Num = 0; extern color Text_Color = clrDodgerBlue; int init() { return(0); } int deinit() { int ObjectCount = ObjectsTotal(); for (int i=ObjectCount-1; i>=0; i--) { if(StringFind(ObjectName(i),"Time_Text-") != -1) { ObjectDelete(ObjectName(i)); } } return(0); } int start() { int Counted_bars=IndicatorCounted();...Ignored
DislikedHello Coders, I have modified this indicator to display to currency indexes on the same window with the respective moving average. What I would like is to have an option for selecting automatically the indexes corresponding to the chart pair displayed Thank you Gerald {file} {file} {file}Ignored
Disliked{quote} Hi Gerald, Sorry that cannot be doneSelecting is something you do manually, automatic speaks for itself. So what you want is to manually type in a number(index) -x bar back from current bar or?? And also what file are we talking about to change?
Ignored
Disliked{quote} Actually, it can be done. Have to use the substring function on the symbol.Ignored