Requests & Ideas

 

Hello ,

this EA is shwoing great result but i am sure that it needs some tuching tunning ( i guess playing around with its codes or adding others )

Please have a look at it i am sure it worth it - i hope so -

attached is a forward test of this EA for just 5 houres or less ( when ever i get good profit i close it and start again )

Thanks

Files:
 

sorry forgot to add EA & SET THAT I AM USEING

eur usd

1M

Files:
sin.set  1 kb
sinai.ex4  8 kb
 

It is necessary to have mql4 file (source code).

 

As requested,

the mql4 attached

Files:
sinai.mq4  5 kb
 

It is just 2 MA indicators crossing EA ...

It can not be profitable for long way as 2 EMA crossing ( SMA period 2 of close and LWMA period 13 of low) can profitable just for few hours only.

I am sorry.

 

sounds like you might have just gotten lucky but ill take a look anyways theres always something that can be added to help out im sure then again im no programmer

 

If I may hop in :

____________________________________

These are the parameters that the ea used for test (the sin.set file). I commented every parameter that I think needs to be commented in order to explain exactly what was that EA doing (and what will it do in the future)
MA1_Period=1 MA2_Period=1
in both periods periods are set to 1 which means that no moving average is going to be calculated but a price for a chosen bar is going to be used
MA1_Method=2 MA2_Method=9
method 9 does not exist : ma methods are the following :
0 - simple moving average

1 - exponential moving average

2 - smoothed moving average

3 - linear weighted moving average

when metatrader is supplied with invalid parameter for ma type it calculates SMA (simple moving average)
MA1_Price=5 MA2_Price=15
price 15 does not exist price types are the following
0 - close

1 - open

2 - high

3 - low

4 - median (high+low)/2

5 - typical (high+low+close)/3

6 - weighted (high+low+close+close)/4

in cases when supplied with invalid parameter metatrader uses close for price
MA1_Shift=0

MA2_Shift=0

Lot=0.50000000

Autoclose=0

Takeprofit=10

Stoploss=150

So, when looking into parameters the EA is trading when close crosses typical price (as I said, no MAs are calculated). The gains from the run so far are coming from the fact that stop loss is set to 150 pips and take profit is set to 10 pips. What it means is that one loosing trade is going to "zero" 15 winning trades. So the win/loos ratio should be 15 to 1 in order to make it break even (meaning it would need 92-93% winning trades)

Taking into account that the EA is taking positions more or less randomly (that kind of a price cross is close to that) it will achieve percentages far bellow the needed percentages and that way it will make it a non-profitable one

____________________________________

at the best, I hope you do not mind this way of answering to your post, but I hope that the most important to you is to avoid some mistakes and the purpose of this post of mine is that : to prevent an eventual error that could cost you money

regards

mladen

 

guys

i really appreciate your posts and thank you alot for clearing me out

with all respect,

 

Request for an EA !!

Hello every one

would appreciate it if you could write an EA for the attached Indicator

with this idia :

TF = 1M ( can be changed by the user from the settings )

if the candel closed on red then :

Enter with the next one ( sell) @ 0.01 ( first lot can be changed by the user from the settings )

profit = $ ( enterd in the settings by how much $ as a total gaind )

if the order went against us and the next or thired or fourth and so on changed its colore to <span style="color: Yellow;">yellow

then we enter on the next candel after the <span style="color: Yellow;">yellow one with @ 0.02

and wait for the total open orders to be in profit with = $ ( enterd in the settings )

hope it is clear for you

Thanks in advance

Files:
mtkhreb.rar  5 kb
pic.jpg  91 kb
 

...

at the best,

__________________________________

It always helps when one knows what indicators are doing to find an appropriate system So these are the Crystal ball and the Wonderful stop line but in more "readable" form.
Crystal ball is a cross of :
  • ema(5,close)
  • ema(8,open)

with an addition that the second ema can be a bar that is not the current bar (that is the crystal ball parameter in it : a bar to which you want it compared) In one word it is almost (but not completely) a MACD

Wonderful stop line is a sma(10,typical) from 2 bars ago

__________________________________

Will check some eas already posted on TSD but I think that there are already ones that work according to rules set by these indicators

PS: there is an easier way to save pictures in metatrader - from file->save as picture choose the one checked like on the picture above. It will save you some time (you do not need to hide details of account or any data that you do not want others to see since only the chart area is shown that way (like on the picture attached)) and it saves you some intermediate step you have to do otherwise

regards

mladen

 

Hey,

I was wondering if I could request a average range indicator that can be based on any custom range based on time.

Hence you can find any daily range for any timezone. Or any range of time size back a custom amount of periods.

So an example of the indicators goal would be able to calculate the range range of say, "8:00" to "17:00" for x periods back.Or the average range of the US EST close day for x periods.

Cheers,

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
Reason: