Stationdealer
Členom od
3 príspevkov
Jan 26 2015 at 20:12
Candyman652 I understand your strategy its one i use too myself but instead of dochian i use keltner channels. RSi and PZ oscillator is also not a problem for me either. Why dont you contact me on skype and i can discuss the specs further and maybe also help you improve your strategy. My skype alias is 'Whitebliss'. You could also get intouch with me via email, its umardarlive@gmail.com.
Cheers
Cheers
modanet
Členom od
7 príspevkov
Sep 22 2015 at 16:32
Hello , can you please add a pop up notification and a sound alert to this cross indicator : /*[[
Name := EMA Cross
Author := Hapsa
Link := https://www.metaquotes.net/
Separate Window := No
Separate Window := No
First Color := Red
First Draw Type := Symbol
First Symbol := 108
Use Second Data := Yes
Second Color := DarkOliveGreen
Second Draw Type := Symbol
Second Symbol := 108
]]*/
#property copyright 'Hapsa'
#property link ''
extern int SlowPeriod=20;
extern int FastPeriod=5;
#property indicator_buffers 3
#property indicator_chart_window
#property indicator_color1 Red
#property indicator_color2 Green
double L20[];
double L50[];
double shift=0,val1=0,val2=0;
int init()
{
IndicatorBuffers(3);
SetIndexStyle(0,DRAW_ARROW);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(0, 108);
SetIndexArrow(1, 108);
SetIndexBuffer(0,L20);
SetIndexBuffer(1,L50);
//---- indicators
//----
return(0);
}
int start()
{
int counted_bars=IndicatorCounted();
//----
int i = Bars - counted_bars - 1;
while (i>=0)
{
val1=0;
val2=0;
double iMaSlowPrevious = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i-1);
double iMaSlowCurrent = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i);
double iMaFastPrevious = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i-1);
double iMaFastCurrent = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i);
if (iMaFastPrevious<iMaSlowPrevious && iMaFastCurrent>iMaSlowCurrent ) val1=High[i];
if (iMaFastPrevious>iMaSlowPrevious && iMaFastCurrent<iMaSlowCurrent ) val2=Low[i];
L20[i]=val1+5*Point;
L50[i]=val2-5*Point;
i--;
}
//----
return(0);
}
Name := EMA Cross
Author := Hapsa
Link := https://www.metaquotes.net/
Separate Window := No
Separate Window := No
First Color := Red
First Draw Type := Symbol
First Symbol := 108
Use Second Data := Yes
Second Color := DarkOliveGreen
Second Draw Type := Symbol
Second Symbol := 108
]]*/
#property copyright 'Hapsa'
#property link ''
extern int SlowPeriod=20;
extern int FastPeriod=5;
#property indicator_buffers 3
#property indicator_chart_window
#property indicator_color1 Red
#property indicator_color2 Green
double L20[];
double L50[];
double shift=0,val1=0,val2=0;
int init()
{
IndicatorBuffers(3);
SetIndexStyle(0,DRAW_ARROW);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(0, 108);
SetIndexArrow(1, 108);
SetIndexBuffer(0,L20);
SetIndexBuffer(1,L50);
//---- indicators
//----
return(0);
}
int start()
{
int counted_bars=IndicatorCounted();
//----
int i = Bars - counted_bars - 1;
while (i>=0)
{
val1=0;
val2=0;
double iMaSlowPrevious = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i-1);
double iMaSlowCurrent = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i);
double iMaFastPrevious = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i-1);
double iMaFastCurrent = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i);
if (iMaFastPrevious<iMaSlowPrevious && iMaFastCurrent>iMaSlowCurrent ) val1=High[i];
if (iMaFastPrevious>iMaSlowPrevious && iMaFastCurrent<iMaSlowCurrent ) val2=Low[i];
L20[i]=val1+5*Point;
L50[i]=val2-5*Point;
i--;
}
//----
return(0);
}
iverlord
Členom od
3 príspevkov
Feb 12 2016 at 11:46
hello ,
id like you to help create an ea . the result is below.
https://www.myfxbook.com/members/iverlord/mt4-1144466/1497807
id like you to help create an ea . the result is below.
https://www.myfxbook.com/members/iverlord/mt4-1144466/1497807
HANNAHIS
(HANNAHIS)
Členom od
6 príspevkov
Apr 03 2016 at 06:11
You can develop your own EA without any programming skills.
There is a software called Forex Strategy Builder (FSB) that you can build your own EA easily as long as you have a trading strategy in mind.
The back testing results is instant and hence you would know immediately whether your EA is profitable or not and thereafter, make the necessary adjustment you need till you get the results you wanted.
I've already development hundreds of very profitable EA with this software.
I developed and test run several hundreds of EA in many accounts.
My aim is to develop, fine tune and improve the EA's performance and thus select the best EA that can withstand various market volatility and produce consistent and reliable performance.
In each MT4 account, there are several good and not so good EAs and therefore, it would affect the account balance. Since these accounts are meant for EA Development, money management for each account is not my focus here. These accounts are set up to do EA analysis and thus I'm looking at each and every EA's individual results to do the selection and elimination.
There is a software called Forex Strategy Builder (FSB) that you can build your own EA easily as long as you have a trading strategy in mind.
The back testing results is instant and hence you would know immediately whether your EA is profitable or not and thereafter, make the necessary adjustment you need till you get the results you wanted.
I've already development hundreds of very profitable EA with this software.
I developed and test run several hundreds of EA in many accounts.
My aim is to develop, fine tune and improve the EA's performance and thus select the best EA that can withstand various market volatility and produce consistent and reliable performance.
In each MT4 account, there are several good and not so good EAs and therefore, it would affect the account balance. Since these accounts are meant for EA Development, money management for each account is not my focus here. These accounts are set up to do EA analysis and thus I'm looking at each and every EA's individual results to do the selection and elimination.
SURE AND STEADY = PROFIT and GROWTH
HANNAHIS
(HANNAHIS)
Členom od
6 príspevkov
Apr 03 2016 at 06:12
naurismucenieks
(naurismucenieks)
Členom od
23 príspevkov
Apr 04 2016 at 06:23
hi,
i'm slowly thinking about transferring my idea in to an EA, and technically it's profitable, - and it's rather simple too!
it revolves around NFP, placing just a few trades, closing them at either a TP or with a time switch (closing trades after X minutes, or at a specific time).
https://www.myfxbook.com/community/programming/nfp-news-trader/1095880,1
i would appreciate if you'd take a look, maybe you'll find it interesting.
get back to me, if that's the case.
cheers!
N
i'm slowly thinking about transferring my idea in to an EA, and technically it's profitable, - and it's rather simple too!
it revolves around NFP, placing just a few trades, closing them at either a TP or with a time switch (closing trades after X minutes, or at a specific time).
https://www.myfxbook.com/community/programming/nfp-news-trader/1095880,1
i would appreciate if you'd take a look, maybe you'll find it interesting.
get back to me, if that's the case.
cheers!
N
sedegho
Členom od
2 príspevkov
Apr 30 2016 at 11:22
hello freefox, i want to show you my strategy and you can verify it with an demoaccount mt4its in forex eurusd. this is my private email sedeghop@gmail.com. send me a text as quickly as possible.
takechance
(takechance)
Členom od
271 príspevkov
May 10 2016 at 07:04
Can any programmer please connect with me privately to discuss a strategy and building an EA based on it. The trade entry logic is quite straightforward but the money management and 'filtering' of trades are very crucial.
Thanks.
Thanks.
antariks1@
sedegho
Členom od
2 príspevkov
May 10 2016 at 14:28
look on the graphic eurusd . each that the price goes up for at least 0.00047 in one minute( the price close minus the price open in one minute) it will go down for after at least 0.00020 16 hours 22 minutes later.