• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion my new ea create

pouya

Member
Credit Hunter
Credits
0
this is my new ea .
for 1 hour time frame.
its good for EURGBP, EURUSD,USDJPY,EURJPY,AUDUSD,NZDUSD,GBPUSD,USDCAD.
if your BROKER write symbol like EURUSDl ,add somthing to symbol ,expert dont work .tell me i resolve problem.
this expert have limit time for 3 mounth.
if any qustin ask me.
back test from 2019,
 

Attachments

Last edited:
Hi pouya,
Thanks for sharing. I am getting error message as follows>
LabelTextChange: failed to change the text! Error code=4202

Please help.
 
if your BROKER write symbol like EURUSDl ,add somthing to symbol ,expert dont work .tell me i resolve problem.

Suggest you use these codes to check for Symbol instead, it will take care of prefix and suffix .

string Currency="EURUSD";
// Check for currency pair
if ( StringFind(Symbol(),Currency,0)>=0 )
Alert("Trading on currency pair "+Currency);
else
Alert("Attached to wrong chart. Attach to "+Currency);

Hope these helps.
 
Hi pouya,
Thanks for sharing. I am getting error message as follows>
LabelTextChange: failed to change the text! Error code=4202

Please help.
dont worry about error .its work with that error .you must backtest with conrol point method becouse the line of expert is very lot so its very slow in every thick method.
take backtest you see its ok .this expert not open position a lot in month. wait you see
 
...error...next..
dont worry about error .its work with that error .you must backtest with conrol point method becouse the line of expert is very lot so its very slow in every thick method.
take backtest you see its ok .this expert not open position a lot in month. wait you see
 
Error 4202...
dont worry about error .its work with that error .you must backtest with conrol point method becouse the line of expert is very lot so its very slow in every thick method.
take backtest you see its ok .this expert not open position a lot in month. wait you see
 
Suggest you use these codes to check for Symbol instead, it will take care of prefix and suffix .

string Currency="EURUSD";
// Check for currency pair
if ( StringFind(Symbol(),Currency,0)>=0 )
Alert("Trading on currency pair "+Currency);
else
Alert("Attached to wrong chart. Attach to "+Currency);

Hope these helps.
tanks for you help .
i do this for some reason .
i wrote in OnInit() for example
int OnInit()
{
if(Symbol()=="AUDUSD")
{
..
}
if diffrenr setting with for example
if(Symbol()=="EURUSD")
{

}
 
Thank you for sharing, but whether the sea is completely free not like as another ea for sale
and if only use ea on London session its good or not
 
Back
Top