• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 5:49pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 5:49pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Coding robots and indicators in C# for no charge (cTrader API) 182 replies

Oanda MT4 - Indicators and EAs not showing 1 reply

EAs and indicators relating to moutaki... 22 replies

InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply

Need help to code EAs for MT4 and MT5 2 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 10571058Page 105910601061 2266
  • 1 Page 1059 2266
  •  
  • Post #21,161
  • Quote
  • Oct 30, 2017 4:16pm Oct 30, 2017 4:16pm
  •  highwic
  • | Joined Nov 2015 | Status: Member | 23 Posts
hello can any 1 add an alert to this
Attached File
File Type: rar GP Lauer Trading System indicators.rar   17 KB | 356 downloads
  • Post #21,162
  • Quote
  • Oct 30, 2017 8:52pm Oct 30, 2017 8:52pm
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
Quoting highwic
Disliked
hello can any 1 add an alert to this {file}
Ignored
no mq4 file for gp lauer.. then how can one do help
Attached Image (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 15 KB
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #21,163
  • Quote
  • Oct 30, 2017 9:32pm Oct 30, 2017 9:32pm
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
Quoting sakisf
Disliked
{quote} That is easy, it's such projects you should do by yourself to learn mql. Actually all lines but 1 were mql4. {image} {file} {file}
Ignored
hi sakisf.. i want to ask one doubt .. first line is input string symbol="EURUSD"; // Symbol but if i want to all scrips means i give Symbol() ... then when i attach with crudeoil it will show for crude oil.. if i attach next to nifty means it will show for nifty.. like for anyother scrips..
Attached Image (click to enlarge)
Click to Enlarge

Name: Image2.png
Size: 27 KB
Attached Image
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #21,164
  • Quote
  • Oct 30, 2017 9:45pm Oct 30, 2017 9:45pm
  •  highwic
  • | Joined Nov 2015 | Status: Member | 23 Posts
Attached File
File Type: ex4 GP-Lauer.ex4   3 KB | 251 downloads
  • Post #21,165
  • Quote
  • Oct 31, 2017 2:05am Oct 31, 2017 2:05am
  •  sakisf
  • Joined Sep 2013 | Status: boreddddd | 3,135 Posts
Quoting ramzam
Disliked
{quote} hi sakisf.. i want to ask one doubt .. first line is input string symbol="EURUSD"; // Symbol but if i want to all scrips means i give Symbol() ... then when i attach with crudeoil it will show for crude oil.. if i attach next to nifty means it will show for nifty.. like for anyother scrips.. {image} {image}
Ignored
Attached Image (click to enlarge)
Click to Enlarge

Name: 1ek5RsazR3i5K9XgVzkp6A.png
Size: 38 KB
  • Post #21,166
  • Quote
  • Oct 31, 2017 4:04am Oct 31, 2017 4:04am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
Quoting sakisf
Disliked
{quote} {image}
Ignored
that much.... enough i thought to do when i read the code... but if it is not shown anything means what to do so i asked here...... really thanking you from heart
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #21,167
  • Quote
  • Oct 31, 2017 4:11am Oct 31, 2017 4:11am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
i found this code but i am confused with this one.. how to take that first candle of month /week of the current year and first day candle for that month
Inserted Code
datetime decrementTradeDate (datetime dtTimeDate) {
   int iTimeYear=TimeYear(dtTimeDate);
   int iTimeMonth=TimeMonth(dtTimeDate);
   int iTimeDay=TimeDay(dtTimeDate);
   int iTimeHour=TimeHour(dtTimeDate);
   int iTimeMinute=TimeMinute(dtTimeDate);
   iTimeDay--;
   if (iTimeDay==0) {
     iTimeMonth--;
     if (iTimeMonth==0) {
       iTimeYear--;
       iTimeMonth=12;
     }
    
     // Thirty days hath September...  
     if (iTimeMonth==4 || iTimeMonth==6 || iTimeMonth==9 || iTimeMonth==11) iTimeDay=30;
     // ...all the rest have thirty-one...
     if (iTimeMonth==1 || iTimeMonth==3 || iTimeMonth==5 || iTimeMonth==7 || iTimeMonth==8 || iTimeMonth==10 || iTimeMonth==12) iTimeDay=31;
     // ...except...
     if (iTimeMonth==2) if (MathMod(iTimeYear, 4)==0) iTimeDay=29; else iTimeDay=28;
   }
  return(StrToTime(iTimeYear + "." + iTimeMonth + "." + iTimeDay + " " + iTimeHour + ":" + iTimeMinute));
this one i found and using for to take first candle high low of M1 M5 M15 M30 H1 AND H4 too taking ..
but unable to get day candle..
Inserted Code
  string date=TimeToString(Time[Bars-1],TIME_DATE);
   for(int i=Bars-1;i>=0;i--){
      
      if(date!=TimeToString(Time[i],TIME_DATE))
      {
         date=TimeToString(Time[i],TIME_DATE);
         DH = High[i];
         DL  = Low[i];
      }
any one help means i will do one more good work...
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot1.png
Size: 26 KB
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #21,168
  • Quote
  • Oct 31, 2017 4:21am Oct 31, 2017 4:21am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
Inserted Code
void DoWeeklyRates(void)
{
   wopen=iTime(Symbol(),PERIOD_W1,NOSHIFT);
   ArrayCopyRates(Day_Price,(Symbol()), PERIOD_W1);
    
 //  TdayHigh = iHigh(Symbol(), PERIOD_D1, 0); //Day_Price[0][3];
//   TdayLow =  iLow(Symbol(), PERIOD_D1, 0); //Day_Price[0][2];
   WOpen = iOpen(Symbol(), PERIOD_W1,0);
    string week =TimeToString(Time[Bars-1],TIME_WEEK);
   for(int i=Bars-1;i>=0;i--){
      
      if(week!=TimeToString(Time[i],TIME_WEEK))
      {
         week=TimeToString(Time[i],TIME_WEEK);
         WH = High[i];
         WL  = Low[i];
      }
}
}
I DID FOR THE first week high low of the year .. but error is coming.. how to do i dont know any one help means i feel great
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot1.png
Size: 30 KB
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #21,169
  • Quote
  • Edited at 8:00am Oct 31, 2017 5:06am | Edited at 8:00am
  •  maximumguita
  • Joined Apr 2015 | Status: Member | 1,031 Posts
Hi there,
a little request, does have anyone an indicator which plots a horizontal line to every doji on the chart? Only real dojis with line at the open/close price.

Thanx in advance :-)
(.)(.) think first ...
  • Post #21,170
  • Quote
  • Oct 31, 2017 5:09am Oct 31, 2017 5:09am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
Quoting sakisf
Disliked
{quote} {image}
Ignored
i did and no error came.. but unable to attach with chart
do not know why
Attached Files
File Type: ex4 hurst_exponent.ex4   39 KB | 177 downloads
File Type: mq4 hurst_exponent.mq4   24 KB | 201 downloads
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #21,171
  • Quote
  • Oct 31, 2017 5:33am Oct 31, 2017 5:33am
  •  T4Trade
  • Joined Sep 2017 | Status: Trend Following,Price Action,Marti | 1,689 Posts
Quoting highwic
Disliked
hello can any 1 add an alert to this {file}
Ignored
these inicators make my mt4 hang
  • Post #21,172
  • Quote
  • Oct 31, 2017 7:24am Oct 31, 2017 7:24am
  •  reteid2222
  • Joined Aug 2015 | Status: Vucking good EA coder I am! | 2,302 Posts
Quoting densol
Disliked
{quote} yea so if there's a bullish engulfing we put buy limit half of the candle only if its below the ma when it is green (use green colour if ma is moving up in setting)and if macd is >0 and the engulfing must not be too large nor too small it has to be the largest size compared to the last 5 candle around 50% larger of the average last 5 candle more than 50 we risk too much less than 50 probably gonna ranged BE when it moved 20pips every engulfing have the potential of 1:5 on average with most trades ends in BE, wl ratio around 50%
Ignored
Before the candle closes I don t know if it will be an bullish engulfing....
Vucking good EA coder...
  • Post #21,173
  • Quote
  • Oct 31, 2017 8:13am Oct 31, 2017 8:13am
  •  vgyuszko
  • Joined Oct 2013 | Status: Member | 653 Posts
Dear Coders!
can please put in magic number in this EA?
THX
Attached File
File Type: ex4 Hidden TP&SL.ex4   3 KB | 211 downloads
Find it The Best Entry Points
  • Post #21,174
  • Quote
  • Oct 31, 2017 8:32am Oct 31, 2017 8:32am
  •  sakisf
  • Joined Sep 2013 | Status: boreddddd | 3,135 Posts
Quoting ramzam
Disliked
{quote} i did and no error came.. but unable to attach with chart do not know why {file} {file}
Ignored
It is not an indicator it's a script. You drop it from scripts on the chart and it gives you an alert and Prints in debug the result. Won't work if you have less than 1k candles in the desired TF.
  • Post #21,175
  • Quote
  • Oct 31, 2017 10:04am Oct 31, 2017 10:04am
  •  breakthru56
  • | Joined Oct 2012 | Status: Member | 94 Posts
Hello Coders

Can anyone help with an indicator that shows on chart total BUY open orders and total SELL open orders.

As shown on chart attached

Thank you so much.
Attached Image (click to enlarge)
Click to Enlarge

Name: ORDERSTOTAL.png
Size: 83 KB
  • Post #21,176
  • Quote
  • Oct 31, 2017 10:28am Oct 31, 2017 10:28am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
Quoting highwic
Disliked
{file}
Ignored
found source code any one wish take
Attached Files
File Type: ex4 #DT-ZigZag-Lauer.ex4   10 KB | 238 downloads
File Type: mq4 #DT-ZigZag-Lauer.mq4   6 KB | 307 downloads
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #21,177
  • Quote
  • Oct 31, 2017 10:31am Oct 31, 2017 10:31am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,880 Posts
Quoting sakisf
Disliked
{quote} It is not an indicator it's a script. You drop it from scripts on the chart and it gives you an alert and Prints in debug the result. Won't work if you have less than 1k candles in the desired TF.
Ignored
yes. but unable to drop it.. thats is the problem.. any way it is ok.. i thought it is indicator and gives some decent s/r but script means i dont know how to make to use...
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #21,178
  • Quote
  • Oct 31, 2017 1:02pm Oct 31, 2017 1:02pm
  •  Dr.Phoenix
  • Joined Mar 2012 | Status: turning probability into profit | 1,550 Posts
Hello, programmers

There is the IB indicator attached I use.

It can show the week's IB. You can see the current week's IB at the picture attached as well.

But the representation of IB is wrong. It is calculated wrongly.

The matter is that the IB indicator takes into consideration the local low price of Sunday's (see the daily chart below) while IB calculating, though the indicator should have taken the local low of Friday's

I think, these Sunday's prices are coming to the MT4 terminal because of a "wrong" server location.

Can anybody correct the indicator?

Best
D.P.
Attached Images (click to enlarge)
Click to Enlarge

Name: 4.jpg
Size: 229 KB Click to Enlarge

Name: 5.jpg
Size: 196 KB
Attached File
File Type: mq4 Initial Balances2a1.mq4   38 KB | 204 downloads
Hunting High and Low
  • Post #21,179
  • Quote
  • Oct 31, 2017 2:49pm Oct 31, 2017 2:49pm
  •  maximumguita
  • Joined Apr 2015 | Status: Member | 1,031 Posts
Quoting breakthru56
Disliked
Hello Coders Can anyone help with an indicator that shows on chart total BUY open orders and total SELL open orders. As shown on chart attached Thank you so much. {image}
Ignored
maybe this will help

Attached File
File Type: ex4 FXPT_TradeStatus_v1.ex4   6 KB | 176 downloads
Attached File
File Type: ex4 FXPT_TradeStatus_v2.ex4   9 KB | 176 downloads
Attached File
File Type: ex4 FXPT_TradeStatus_v3.ex4   10 KB | 204 downloads
(.)(.) think first ...
  • Post #21,180
  • Quote
  • Oct 31, 2017 4:57pm Oct 31, 2017 4:57pm
  •  breakthru56
  • | Joined Oct 2012 | Status: Member | 94 Posts
Quoting maximumguita
Disliked
{quote} maybe this will help {file}{file}{file}
Ignored

maximumguita

Thanks so much for yor help. They are very good.
1
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 10571058Page 105910601061 2266
    • 1 Page 1059 2266
6 traders viewing now, 4 are members:
FxCashFlow
,
bledubd
,
Jagg
,
Forex-Forex
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2021