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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

I will code your scalping EAs for no charge 42 replies

I will code your pivot EAs for no charge 19 replies

Need help to code EAs for MT4 and MT5 4 replies

EAs and indicators relating to moutaki... 22 replies

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

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 40,215
Attachments: I will code your EAs and Indicators for no charge
Exit Attachments
Tags: I will code your EAs and Indicators for no charge
Cancel

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 27112712Page 271327142715 2922
  • 1 Page 2713 2922
  •  
  • Post #54,241
  • Quote
  • Sep 7, 2022 9:07am Sep 7, 2022 9:07am
  •  Samokeliso
  • | Joined Aug 2022 | Status: Member | 35 Posts
Quoting Samokeliso
Disliked
Greetings can someone help me out with adding two moving averages on the indicator below please {file}
Ignored
Can someone help me by adding two moving averages on the indicator please
 
 
  • Post #54,242
  • Quote
  • Sep 7, 2022 9:37am Sep 7, 2022 9:37am
  •  Hunter74
  • | Joined Oct 2019 | Status: Member | 30 Posts
Quoting Hunter74
Disliked
Hi all... is it possible to add buffers to the lines for this indicator to use in making EAs and Indicators... thanks for any help {file}
Ignored

Any chance this can be done?..
 
 
  • Post #54,243
  • Quote
  • Sep 7, 2022 9:54am Sep 7, 2022 9:54am
  •  Maijin
  • | Joined Dec 2013 | Status: Member | 85 Posts
Quoting Slingshots1
Disliked
{quote} Pls can you help to add alert to this pls help, BLUE BOX BUY ......{image}{file}RED BOX SELL. THNKS
Ignored
it is a simple parabolic indicator. there are many of them with alert for free on the net.
 
 
  • Post #54,244
  • Quote
  • Sep 7, 2022 10:30am Sep 7, 2022 10:30am
  •  lpn55i
  • | Joined Mar 2021 | Status: Junior Member | 1 Post
Hello, anyone can help me, adding push notifications to this indicator?
Its on mq4 format.
Thanks in advance.
Attached File(s)
File Type: mq4 adx_mpower_crossing_alert.mq4   3 KB | 113 downloads
 
1
  • Post #54,245
  • Quote
  • Sep 7, 2022 11:32am Sep 7, 2022 11:32am
  •  RaviKiran
  • | Joined Jul 2010 | Status: Member | 113 Posts
Hi, Guys,
I am Following BBMA Strategy.
Can someone provide a dashboard / EA of (EMA-50 Linear Weighted Price Applied to LOW on 1 hr, 4hr)
The expert should provide an alert as soon as the price touches the EMA based on above condition.
Please advise
Best Regards,
Ravi
Ravi Kiran T V
 
 
  • Post #54,246
  • Quote
  • Sep 7, 2022 12:19pm Sep 7, 2022 12:19pm
  •  RIKc
  • | Joined Jun 2017 | Status: Member | 25 Posts
Quoting MoMoEA
Disliked
{quote} Many thanks RIKc, I am not an expert for using array, could you please write a simple example?
Ignored
see how it is done in the adviser at the link https://www.forexfactory.com/thread/...54#post8868754
or
//+----------------------------------------------------------------------------+
void array_History() {
int num,x=0;//,size=ArrayRange(закрытые_ордеры,0);
// x=size-1;
// if(size==0 || size==1){закрытые_ордеры[0][2]=0;}
ArrayFree(закрытые_ордеры);
for(int i=OrdersHistoryTotal()-1; i>0; i--) {
if(OrderSelect(i,SELECT_BY_POS,MODE_HISTORY) && CHKMAGIC(OrderMagicNumber()) && OrderType()<2) {
// if((datetime)закрытые_ордеры[size-1][2]<OrderCloseTime() || size==1) {
num=SArrayBsearch(Пары,OrderSymbol());
if(num==-1) continue;
ArrayResize(закрытые_ордеры,x+1,20);
закрытые_ордеры[x][0]=num;
закрытые_ордеры[x][1]=(double)OrderTicket();
закрытые_ордеры[x][2]=(double)OrderCloseTime();
закрытые_ордеры[x][3]=(double)OrderOpenTime();
закрытые_ордеры[x][4]=(double)OrderProfit()+OrderSwap()+OrderCommission();;
x++;
}
}
}
//+------------------------------------------------------------------++
// Выполняет сортировку двумерного массива int по заданному измерению методом пузырька в заданном направлении сортировки
// array - сортируемый двумерный массив int
// mode - направление сортировки (MODE_ASCEND - по возрастанию; MODE_DESCEND - по убыванию)
void ArrayTwoSort(double &array[][], int key, int mode=MODE_ASCEND) {
double dt_temp = 0;
int line = ArrayRange(array,0);
int line2 = ArrayRange(array,1);
if(key >= 0 && key < line2){
for(int i=line-1;i>=0;i--){
for (int j=0; j<i; j++){
if (mode==MODE_ASCEND){
if(array[j][key]>array[j+1][key]){
for(int q=0;q<line2;q++){
dt_temp = array[j][q]; array[j][q] = array[j+1][q]; array[j+1][q] = dt_temp;
}
}
}
else{
if(array[j][key]<array[j+1][key]){
for(int q=0;q<line2;q++){
dt_temp = array[j][q]; array[j][q] = array[j+1][q]; array[j+1][q] = dt_temp;
}
}
}
}
}
}
}
 
 
  • Post #54,247
  • Quote
  • Sep 7, 2022 1:17pm Sep 7, 2022 1:17pm
  •  Sameer2021
  • | Joined Apr 2021 | Status: Member | 57 Posts
Quoting Sameer2021
Disliked
Hello Dear Developer, Can you please Develop an EA of SonicR Trading System?? It will be a huge favour. If you have done it already please share the link. TAH SonicR Trading System available here on FF. Thank you for your help.
Ignored
Hi all, can someone please do that??
 
 
  • Post #54,248
  • Quote
  • Sep 7, 2022 8:13pm Sep 7, 2022 8:13pm
  •  siglot
  • | Joined Sep 2020 | Status: Member | 71 Posts
Good day Coders,

I will like a well meaning coder to help me make this indicator arrow appear only at the "Close" of a candle....

The arrow sometimes get slightly delayed, this might be due to how the indicator was made but I'm not too sure.

As a result, i sometimes get late signal (appear sometimes appear at the previous candle during the formation of the current candle)

Thanks...

Attached File(s)
File Type: mq4 SMA Arrow.mq4   5 KB | 90 downloads
Live and Let Live
 
 
  • Post #54,249
  • Quote
  • Edited 5:53am Sep 8, 2022 12:32am | Edited 5:53am
  •  BossZ
  • | Joined Sep 2022 | Status: Junior Member | 9 Posts
Hello Coders!!!

Could you help me for a second?

This indicator is currently being tested by me. But there are way too many arrows on this indicator. Please let me know how to fix the color correction or disable the red and green arrows.
All I have to do is display each yellow X. Currently I am testing every yellow X signal to trade.

Every time a yellow X appears. Can I receive notifications on my phone or on Messenger?

I have no experience with coding. Looking forward to receiving your help.
Thank you so much!

***Indicator parameters:
B
ars : ABC (total candle).
- CCI:
+Period: 4
+ Threshold: -50
- RSI:
+ Period:2
+Threshold: 25
- Setting:
+ Entry type: (Rsi, CCI, both...)
+
Exit type: (First signal; Both singals)



Note: I used Google Translate to translate the above. I sincerely apologize if I made a mistake.
Attached Image (click to enlarge)
Click to Enlarge

Name: Please.jpg
Size: 199 KB
Attached File(s)
File Type: mq4 confluence.mq4   22 KB | 104 downloads
 
 
  • Post #54,250
  • Quote
  • Edited 1:54am Sep 8, 2022 12:45am | Edited 1:54am
  •  vgyuszko
  • Joined Oct 2013 | Status: Member | 659 Posts
Dear Coders!
i have one indicator about on indicator settings not push notification ,and email funktion.Can you please make for me?
Thank you Gyula
Attached File(s)
File Type: ex4 ForexCracked.comArrow Trend Surfer Crack.ex4   8 KB | 167 downloads
Find it The Best Entry Points
 
 
  • Post #54,251
  • Quote
  • Sep 8, 2022 12:52am Sep 8, 2022 12:52am
  •  pravin_moule
  • | Joined Mar 2010 | Status: Member | 15 Posts
Will you code in mql5 ?
if yes pls. code the mgrid ea (https://www.forexfactory.com/thread/...n-math-grid-ea) in mql5
 
 
  • Post #54,252
  • Quote
  • Sep 8, 2022 1:05am Sep 8, 2022 1:05am
  •  njatha
  • | Joined Sep 2020 | Status: Member | 22 Posts
Quoting hkngns
Disliked
{quote} There you go.. Nice and clean {file} {image}
Ignored
Thanks. It works fine.
The only problem is that when used with an ea it doesn't work with the current bar (shift 0). It opens a trade on the start of the next bar. Any ideas on how to change this?
 
 
  • Post #54,253
  • Quote
  • Sep 8, 2022 2:41am Sep 8, 2022 2:41am
  •  Nod32
  • Joined Aug 2020 | Status: Member | 202 Posts
Quoting BossZ
Disliked
Hello everyone!!! Can you programmers out there assist me in fixing this file? This indicator is currently being tested by me. But there are way too many arrows on this indicator. Please let me know how to fix the color correction or disable the red and green arrows. All I have to do is display each yellow X. Currently I am testing every yellow X signal to trade. Every time a yellow X appears. Can I receive notifications on my phone or on Messenger? I have no experience with coding. I therefore hope you can be of assistance. Thank you so much! ***Indicator...
Ignored
Attached Image (click to enlarge)
Click to Enlarge

Name: 1233.jpg
Size: 177 KB
 
 
  • Post #54,254
  • Quote
  • Sep 8, 2022 4:04am Sep 8, 2022 4:04am
  •  MoMoEA
  • | Joined Sep 2022 | Status: Junior Member | 3 Posts
Quoting Sameer2021
Disliked
{quote} Hi all, can someone please do that??
Ignored
Thank You!
 
 
  • Post #54,255
  • Quote
  • Sep 8, 2022 4:04am Sep 8, 2022 4:04am
  •  iwudz
  • Joined Mar 2015 | Status: Member | 54 Posts
Quoting Drew123
Disliked
Hello Can push alerts be added to this indicator please Thanks Drew {file}
Ignored
add push notif ...
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 21 KB
Attached File(s)
File Type: mq4 #SHI_SilverTrendSig-Mod 1b(alert).mq4   10 KB | 174 downloads
 
2
  • Post #54,256
  • Quote
  • Sep 8, 2022 5:43am Sep 8, 2022 5:43am
  •  Drew123
  • | Joined Dec 2012 | Status: Member | 26 Posts
Quoting iwudz
Disliked
{quote} add push notif ... {file} {image}
Ignored
Works well

Thank you Iwudz
 
 
  • Post #54,257
  • Quote
  • Sep 8, 2022 5:45am Sep 8, 2022 5:45am
  •  dhanisadikin
  • | Joined Mar 2010 | Status: Junior Member | 5 Posts | Online Now
hello coder, can anyone help me revise this indicator so that it can display a green or red trend even though the templates display is small (if the templates are small and the indicator display only shows one color, it will not be visible in the templates, but if we enlarge the templates and display the indicator looks two colors then it will appear)
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: EURUSD_H1_2022-9-08_17-30-57.png
Size: 4 KB
Click to Enlarge

Name: EURUSD_H1_2022-9-08_17-31-11.png
Size: 4 KB
Attached File(s)
File Type: mq4 Solar Winds joy - histo (no repaint with alert) v3.mq4   6 KB | 141 downloads
 
 
  • Post #54,258
  • Quote
  • Sep 8, 2022 5:54am Sep 8, 2022 5:54am
  •  takeda1312
  • | Joined Jun 2020 | Status: Junior Member | 3 Posts
Quoting Metatrader
Disliked
Hey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. Andi
Ignored
Hi ! I am in need of a simple EA!
The EA is dropped into the DXY chart using DXY as a trading signal! Chart DXY will be entered manually (including pending orders)
1. When the DXY chart matches Buy order (DXY increases): EA will trigger Sell order: EURUSD / GBPUSD / NZDUSD / AUDUSD / XAUUSD - Buy : USDJPY / USDCAD / USDCHF
2. When the DXY chart matches the Sell order (DXY decreases): EA will trigger Buy order: EURUSD / GBPUSD / NZDUSD / AUDUSD / XAUUSD - Sell : USDJPY / USDCAD / USDCHF
3. When the DXY chart matches takeprofit or stoploss will close all existing orders.
4. The EA has a trailingstop feature for the DXY chart.
5. The EA has stop loss input entries for each pair: EURUSD / GBPUSD / NZDUSD / AUDUSD / XAUUSD / USDJPY / USDCAD / USDCHF to avoid price spikes in each pair separately.
 
 
  • Post #54,259
  • Quote
  • Sep 8, 2022 6:33am Sep 8, 2022 6:33am
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,383 Posts
Shi SilverTrend and Silver Trend indicator are repainting toys,guys beware please
 
 
  • Post #54,260
  • Quote
  • Sep 8, 2022 8:34am Sep 8, 2022 8:34am
  •  sol4live
  • | Joined Jan 2009 | Status: Member | 188 Posts
Quoting Nod32
Disliked
{quote} {image}
Ignored
what settings did you use here?
Bjos
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 27112712Page 271327142715 2922
    • 1 Page 2713 2922
15 traders viewing now, 4 are members:
emmy4
,
orderblock
,
ysewellam
,
Samuelkanu
  • 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 / ©2023