• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 4:43am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 4:43am
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 40 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,127
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 834835Page 836837838 2916
  • 1 Page 836 2916
  •  
  • Post #16,701
  • Quote
  • Dec 8, 2016 8:00am Dec 8, 2016 8:00am
  •  2george
  • Joined Feb 2007 | Status: Member | 321 Posts
http://www.forexfactory.com/showthre...72#post9328872
Here is a good support and resistance indicator for longer term trading (4hr and over charts).
The horizontal levels are broken/stopped when the price cuts these levels. Illustration of how it is currently attached.
However, it could be made even better if the support and resistance levels were allowed to continue until they were broken by an OPEN price (rather than the current price) but if someone who knows about coding can adapt it, then the new version will be even better.
George
Attached Image (click to enlarge)
Click to Enlarge

Name: AUDUSDH4.png
Size: 44 KB
Attached File(s)
File Type: mq4 IndicatorCrossCCI 8v2.mq4   17 KB | 387 downloads
 
 
  • Post #16,702
  • Quote
  • Dec 8, 2016 8:41am Dec 8, 2016 8:41am
  •  fxnow
  • | Joined Apr 2015 | Status: Member | 132 Posts
Quoting MhFx7
Disliked
{quote} Look at the code it is very simple, just change the conditions as you want. Current conditions: //-- OpenSell if(Open[1]>ma && Close[1]<ma) //-- OpenBuy if(Open[1]<ma && Close[1]>ma) //-- CloseSell if(Open[1]<ma && Close[1]>ma) //-- CloseBuy if(Open[1]>ma && Close[1]<ma) Your described conditions: //-- OpenSell if(Open[1]<ma) //-- OpenBuy if(Open[1]>ma) //-- CloseSell if(Open[1]>ma) //-- CloseBuy if(Open[1]<ma)
Ignored
Thank you very much MHFX7 for your help.
Unfortunately i have no programming experience ,so even this simple code is difficult for me.
I changed it ,but unfortunately now it is still working differently.it opens trades before any cross .
My idea is after EA attached ,if a candle close above MA ,open buy,than if a candle close below MA ,close buy trade and open a sell trade ,and so on.
I changed the code to this ,but still not working:
//---- sell conditions
if(Open[1]<ma)
{
res=OrderSend(Symbol(),OP_SELL,LotsOptimized(),Bid,3,0,0,"",MAGICMA,0,Red);
return;
}
//---- buy conditions
if(Open[1]>ma)
{
res=OrderSend(Symbol(),OP_BUY,LotsOptimized(),Ask,3,0,0,"",MAGICMA,0,Blue);
return;

if(OrderType()==OP_BUY)
{
if(Open[1]<ma) OrderClose(OrderTicket(),OrderLots(),Bid,3,White);
break;
}
if(OrderType()==OP_SELL)
{
if(Open[1]>ma) OrderClose(OrderTicket(),OrderLots(),Ask,3,White);
break;
Thank you for your help.
Attached File(s)
File Type: mq4 Moving_Average.mq4   5 KB | 234 downloads
 
 
  • Post #16,703
  • Quote
  • Edited 10:15am Dec 8, 2016 9:17am | Edited 10:15am
  •  MhFx7
  • | Joined Aug 2016 | Status: Member | 49 Posts
Quoting fxnow
Disliked
{quote} Thank you very much MHFX7 for your help. Unfortunately i have no programming experience ,so even this simple code is difficult for me. I changed it ,but unfortunately now it is still working differently.it opens trades before any cross . My idea is after EA attached ,if a candle close above MA ,open buy,than if a candle close below MA ,close buy trade and open a sell trade ,and so on. I changed the code to this ,but still not working: //---- sell conditions if(Open[1]<ma) { res=OrderSend(Symbol(),OP_SELL,LotsOptimized(),Bid,3,0,0,"",MAGICMA,0,Red);...
Ignored
Please use the code button when you insert a code.
Attached Image

Make sure you are looking at the same Moving Average that the EA does.
Inserted Code
ma=iMA(NULL,0,12,6,MODE_SMA,PRICE_CLOSE,0);
 
The EA is based this Moving Average (Default Settings):
Period=12, Shift=6, Mode Simple, PriceClose.

If you want to Buy/Sell when last candle close above/below MA you should use Close[1] not Open[1].
Ah ok, i saw i made a Mistake in my last example, that's why you used Open[1].
 
 
  • Post #16,704
  • Quote
  • Dec 8, 2016 11:32am Dec 8, 2016 11:32am
  •  fxnow
  • | Joined Apr 2015 | Status: Member | 132 Posts
Quoting MhFx7
Disliked
{quote} Please use the code button when you insert a code. {image} Make sure you are looking at the same Moving Average that the EA does. ma=iMA(NULL,0,12,6,MODE_SMA,PRICE_CLOSE,0); The EA is based this Moving Average (Default Settings): Period=12, Shift=6, Mode Simple, PriceClose. If you want to Buy/Sell when last candle close above/below MA you should use Close[1] not Open[1]. Ah ok, i saw i made a Mistake in my last example, that's why you used Open[1].
Ignored
Again thank you for your reply Mhfx7.
I'm not sure where i should have used the close instead of open ,but i guess it must be on the close order conditions so i changed it,but could n't compile it due to errors

[code//| Check for open order conditions |
//+------------------------------------------------------------------+
void CheckForOpen()
{
double ma;
int res;
//---- go trading only for first tiks of new bar
if(Volume[0]>1) return;
//---- get Moving Average
ma=iMA(NULL,0,MovingPeriod,MovingShift,MODE_SMA,PRICE_CLOSE,0);
//---- sell conditions
if(open[1]<ma)
{
res=OrderSend(Symbol(),OP_SELL,LotsOptimized(),Bid,3,0,0,"",MAGICMA,0,Red);
return;
}
//---- buy conditions
if(open[1]>ma)
{
res=OrderSend(Symbol(),OP_BUY,LotsOptimized(),Ask,3,0,0,"",MAGICMA,0,Blue);
return;
}
//----
}
//+------------------------------------------------------------------+
//| Check for close order conditions |
//+------------------------------------------------------------------+
void CheckForClose()
{
double ma;
//---- go trading only for first tiks of new bar
if(Volume[0]>1) return;
//---- get Moving Average
ma=iMA(NULL,0,MovingPeriod,MovingShift,MODE_SMA,PRICE_CLOSE,0);
//----
for(int i=0;i<OrdersTotal();i++)
{
if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==false) break;
if(OrderMagicNumber()!=MAGICMA || OrderSymbol()!=Symbol()) continue;
//---- check order type
if(OrderType()==OP_BUY)
{
if(close[1]<ma) OrderClose(OrderTicket(),OrderLots(),Bid,3,White);
break;
}
if(OrderType()==OP_SELL)
{
if(close[1]>ma) OrderClose(OrderTicket(),OrderLots(),Ask,3,White);
break;
}
}
//----
}
//+------------------------------------------------------------------+
//| Start function |
//+------------------------------------------------------------------+
void start()
{
//---- check for history and trading
if(Bars<100 || IsTradeAllowed()==false) return;
//---- calculate open orders by current symbol
if(CalculateCurrentOrders(Symbol())==0) CheckForOpen();
else CheckForClose();
//----][/code]
Attached Image (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 11 KB
 
 
  • Post #16,705
  • Quote
  • Edited 11:59am Dec 8, 2016 11:45am | Edited 11:59am
  •  MhFx7
  • | Joined Aug 2016 | Status: Member | 49 Posts
Quoting fxnow
Disliked
{quote} Again thank you for your reply Mhfx7. I'm not sure where i should have used the close instead of open ,but i guess it must be on the close order conditions so i changed it,but could n't compile it due to errors >1) return; //---- get Moving Average ma=iMA(NULL,0,MovingPeriod,MovingShift,MODE_SMA,PRICE_CLOSE,0); //---- sell conditions if(open[1]<ma) { res=OrderSend(Symbol(),OP_SELL,LotsOptimized(),Bid,3,0,0,"",MAGICMA,0,Red); return; } //---- buy conditions if(open[1]>ma) { res=OrderSend(Symbol(),OP_BUY,LotsOptimized(),Ask,3,0,0,"",MAGICMA,0,Blue);...
Ignored
Please use the code button when you insert a code.
Attached Image

You wrote open, close instead of Open, Close.
I'm sorry but I think you should first learn the MQL4 basics.
Start with the simple Open/Close Variables for example.

PS: You can PM me if you have some questions.
 
 
  • Post #16,706
  • Quote
  • Dec 8, 2016 11:51am Dec 8, 2016 11:51am
  •  Sssno1
  • | Membership Revoked | Joined Oct 2016 | 49 Posts
HELLO,

CAN anybody please help me modify this EA, small modification is needed.

THE EA has 3 configurations.

WANT TO CHANGE FOR CONFIGURATION 2:

CHANGE all live order TPs to the latest pending order hit TP.

THATS it.

CAN anybody do it please I will send message.

Thank you,

Awaiting coders reply.
 
 
  • Post #16,707
  • Quote
  • Dec 8, 2016 11:59am Dec 8, 2016 11:59am
  •  fxnow
  • | Joined Apr 2015 | Status: Member | 132 Posts
Quoting MhFx7
Disliked
{quote} Please use the code button when you insert a code. {image} You wrote open, close instead of Open, Close. I'm sorry but I think you should first learn the MQL4 basics. Start with the simple Open/Close Variables for example.
Ignored
Ok ,Thank you very much Mhfx,i appreciate your replies .
I'll try to learn the language.
Still if any member of FF know of available EA with 1 Moving average and the above conditions,kindly let me know.
 
 
  • Post #16,708
  • Quote
  • Dec 8, 2016 2:17pm Dec 8, 2016 2:17pm
  •  ramos04
  • | Joined Apr 2012 | Status: Member | 38 Posts
Quoting pulke
Disliked
Hello I would like to ask fro a simple indicator that automatically place lines on reocurring price levels that I choose [for instance every 50 : 0.1850(0.1950\0.2450\0.6450 etc) and others. Thank you {image}
Ignored
Try these
Attached File(s)
File Type: mq4 SweetSpots.mq4   4 KB | 232 downloads
File Type: ex4 Grid_v1_0.ex4   5 KB | 210 downloads
 
 
  • Post #16,709
  • Quote
  • Dec 8, 2016 2:59pm Dec 8, 2016 2:59pm
  •  Emma7788-FAN
  • Joined Apr 2015 | Status: ENJOY YOUR TRADES | 630 Posts
Hi My friends...

i need some help from all masters coders here....
i have some indicators... they don't show historical data....so difficult to backtest and analyse them...

Attached File(s)
File Type: ex4 HPFZ.ex4   15 KB | 279 downloads
Attached File(s)
File Type: ex4 HPFZ.ex4   15 KB | 279 downloads
Attached File(s)
File Type: ex4 HPFZ.ex4   15 KB | 279 downloads

can someone pls do me a favour by coding historical data to these attached indicators.....

and Please i need to code it for Daily ,Weekly and Monthly with Historical data as well

thanks in advance....

this one here....peatsfx shows historical data but it repaints the present days levels at the start of the next day...i want it to be the same way as it showed the entire present day....need to stop it from changing at the start of new day....

Attached File(s)
File Type: ex4 HPFZ.ex4   15 KB | 279 downloads
Attached File(s)
File Type: ex4 peatsfx-HPFZ.ex4   11 KB | 262 downloads
Attached File(s)
File Type: mq4 peatsfx-HPFZ.mq4   7 KB | 319 downloads


a help here would be really appreciated...
ENJOY YOUR TRADE
 
 
  • Post #16,710
  • Quote
  • Dec 8, 2016 3:19pm Dec 8, 2016 3:19pm
  •  Emma7788-FAN
  • Joined Apr 2015 | Status: ENJOY YOUR TRADES | 630 Posts
Quoting Emma7788-FAN
Disliked
Hi My friends... i need some help from all masters coders here.... i have some indicators... they don't show historical data....so difficult to backtest and analyse them... {file}{file}{file} can someone pls do me a favour by coding historical data to these attached indicators..... and Please i need to code it for Daily ,Weekly and Monthly with Historical data as well thanks in advance.... this one here....peatsfx shows historical data but it repaints the present days levels at the start of the next day...i want it to be the same way as it showed...
Ignored


How can i export those data to Excel File
automatically
every day at 00.01?
Attached Image (click to enlarge)
Click to Enlarge

Name: HPFZone.jpg
Size: 550 KB


and on Friday after market close on weekly data and on monthly endes as well
Attached Image (click to enlarge)
Click to Enlarge

Name: HPFZone.jpg
Size: 550 KB
ENJOY YOUR TRADE
 
 
  • Post #16,711
  • Quote
  • Dec 9, 2016 2:34am Dec 9, 2016 2:34am
  •  pulke
  • | Joined Oct 2015 | Status: Member | 134 Posts
Quoting ramos04
Disliked
{quote} Try these {file} {file}
Ignored
Thanks, but these don't let me choose the levels. I want to choose my own custom reocurring price levels.
 
 
  • Post #16,712
  • Quote
  • Dec 9, 2016 2:57am Dec 9, 2016 2:57am
  •  prku018
  • | Joined Jun 2012 | Status: Member | 122 Posts
Quoting prku018
Disliked
Hello Coder's Can some one please be kind enough to help me on this one since its not tracking the latest divergence correctly and needs some corrections to be made. or if someone is having similar for the same please forward it Regards Prem {file}
Ignored

any help on this coder please
 
 
  • Post #16,713
  • Quote
  • Dec 9, 2016 3:16am Dec 9, 2016 3:16am
  •  MhFx7
  • | Joined Aug 2016 | Status: Member | 49 Posts
Quoting prku018
Disliked
Hello Coder's Can some one please be kind enough to help me on this one since its not tracking the latest divergence correctly and needs some corrections to be made. or if someone is having similar for the same please forward it Regards Prem {file}
Ignored
.ex4 can't be modified.
 
 
  • Post #16,714
  • Quote
  • Dec 9, 2016 3:46am Dec 9, 2016 3:46am
  •  prku018
  • | Joined Jun 2012 | Status: Member | 122 Posts
Quoting MhFx7
Disliked
{quote} .ex4 can't be modified.
Ignored
OMG thanks any how will ask the person who has posted and check if possible for mq file
 
 
  • Post #16,715
  • Quote
  • Edited 5:08am Dec 9, 2016 4:20am | Edited 5:08am
  •  oguz
  • | Joined Dec 2015 | Status: Member | 65 Posts
Hi,
Attached experts have some error(s) on latest build mt4.
I am very pleased if you fix them for 5 digits brooker.

P.S: All eas coder @funyoo's work
Thank you.
Attached File(s)
File Type: zip for Fix EAs.zip   121 KB | 234 downloads
 
 
  • Post #16,716
  • Quote
  • Dec 9, 2016 4:32am Dec 9, 2016 4:32am
  •  rythmrig
  • Joined Mar 2013 | Status: Member | 755 Posts
Can anybody get a parabolic sar to load in a sub window?
 
 
  • Post #16,717
  • Quote
  • Dec 9, 2016 5:04am Dec 9, 2016 5:04am
  •  KevinSt9
  • | Joined Aug 2015 | Status: Cyborg Scalper | 152 Posts
Hi CJA, All Traders

Please please please can you edit this indicator for me/us.

When I load it onto my screen, it shows way to much on the screen.

Would it be possible for the indicator to just show the arrows as green (up/long/buy) & red (down/short/sell) please?

Many thanks, Oh Great One!
Attached File(s)
File Type: mq4 The Jesing Magic BuySell Arrow.mq4   6 KB | 306 downloads
kevinfxtrader blogspot com; 50 PIPS Per Day
 
 
  • Post #16,718
  • Quote
  • Dec 9, 2016 5:10am Dec 9, 2016 5:10am
  •  oguz
  • | Joined Dec 2015 | Status: Member | 65 Posts
Hi again ,
Attached expert have some error(s) on latest build mt4.
I am very pleased if you fix them for 5 digits brooker.

Thank you.
Attached File(s)
File Type: mq4 RSI Envelopes EA.mq4   61 KB | 233 downloads
 
 
  • Post #16,719
  • Quote
  • Dec 9, 2016 5:50am Dec 9, 2016 5:50am
  •  orange88
  • | Joined Dec 2016 | Status: Member | 13 Posts
hello everyone

to modify indicators which programs can be used ?
 
 
  • Post #16,720
  • Quote
  • Dec 9, 2016 6:18am Dec 9, 2016 6:18am
  •  cja
  • Joined Feb 2007 | Status: Member | 1,894 Posts | Online Now
Quoting KevinSt9
Disliked
Hi CJA, All Traders Please please please can you edit this indicator for me/us. When I load it onto my screen, it shows way to much on the screen. Would it be possible for the indicator to just show the arrows as green (up/long/buy) & red (down/short/sell) please? Many thanks, Oh Great One! {file}
Ignored
I have coded the option into the inputs to show just the arrows or the whole indicator.
Attached File(s)
File Type: mq4 The Jesing Magic BuySell Arrows.mq4   6 KB | 491 downloads


ShowArrowsOnly = true;
Attached Image (click to enlarge)
Click to Enlarge

Name: arrows.png
Size: 40 KB


ShowArrowsOnly = false;
Attached Image (click to enlarge)
Click to Enlarge

Name: whole indi.png
Size: 48 KB
Trade what you see not what you hope
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 834835Page 836837838 2916
    • 1 Page 836 2916
16 traders viewing now, 5 are members:
Invisible
,
Uru
,
Thakri
,
Wanderer272
,
parish12
  • 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